forked from robdobsn/RaftSysMods
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
49 lines (48 loc) · 1.58 KB
/
Copy pathCMakeLists.txt
File metadata and controls
49 lines (48 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
cmake_minimum_required(VERSION 3.16)
idf_component_register(
NAME
"RaftSysMods"
SRCS
"components/BLEManager/BLEAdvertDecoder.cpp"
"components/BLEManager/BLEBusDeviceManager.cpp"
"components/BLEManager/BLEGapServer.cpp"
"components/BLEManager/BLEGattOutbound.cpp"
"components/BLEManager/BLEGattServer.cpp"
"components/BLEManager/BLEManager.cpp"
"components/BLEManager/BLEStdServices.cpp"
"components/BLEManager/BusBLE.cpp"
"components/CommandFile/CommandFile.cpp"
"components/CommandSerial/CommandSerial.cpp"
"components/CommandSerial/CommandSerialPort.cpp"
"components/CommandSocket/CommandSocket.cpp"
"components/DataCollection/SampleCollectorJSON.cpp"
"components/ESPOTAUpdate/ESPOTAUpdate.cpp"
"components/FileManager/FileManager.cpp"
"components/LogManager/LoggerPapertrail.cpp"
"components/LogManager/LoggerRaftRemote.cpp"
"components/LogManager/LogManager.cpp"
"components/MQTTManager/MQTTManager.cpp"
"components/NetworkManager/NetworkManager.cpp"
"components/SerialConsole/SerialConsole.cpp"
"components/StatePublisher/StatePublisher.cpp"
INCLUDE_DIRS
"components/BLEManager"
"components/CommandFile"
"components/CommandSerial"
"components/CommandSocket"
"components/DataCollection"
"components/ESPOTAUpdate"
"components/FileManager"
"components/LogManager"
"components/MQTTManager"
"components/NetworkManager"
"components/RegisterSysMods"
"components/SerialConsole"
"components/StatePublisher"
REQUIRES
RaftCore
bt
spiffs
fatfs
app_update
)