-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
195 lines (169 loc) · 6.4 KB
/
CMakeLists.txt
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: MIT
cmake_minimum_required(VERSION 3.16)
project(aws_iot_core_ota)
set(CMAKE_C_FLAGS "-O3 -Wall -Wextra")
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(BUILD_SHARED_LIBS OFF)
set(CMAKE_BUILD_TYPE Debug)
find_package(OpenSSL REQUIRED)
include(FetchContent)
FetchContent_Declare(
FreeRTOS_Kernel
# hash: sha256-UXge9cJcbTaMlaCbrAVQ03AwQ2WQll5aL8BqFlN4Q/Y=
GIT_REPOSITORY https://github.com/FreeRTOS/FreeRTOS-Kernel.git
GIT_TAG 6d65558ba01141d7c50ff6f93a4054cc5f16940e)
FetchContent_Declare(
coreMQTT
# hash: sha256-iT+mjlduomUTWYEdpoRwoLxJzI0daPjypxlXlXie7nc=
GIT_REPOSITORY https://github.com/FreeRTOS/coreMQTT.git
GIT_TAG d41f4572ff4e91d1d3116093331aa23936038f35)
FetchContent_Declare(
backoffAlgorithm
# hash: sha256-R5UqyC431OmQG5NM/hh4QOUdo6T60x+CNv1Zuxfjzhw=
GIT_REPOSITORY https://github.com/FreeRTOS/backoffAlgorithm.git
GIT_TAG 12a6d73796f7634085af5a25e92f4a5d1200cca6)
FetchContent_Declare(
coreJSON
# hash: sha256-r0lJff61NK2rPtO7Wr6RudFNQiLt1D4M30V7/p60Zi0=
GIT_REPOSITORY https://github.com/FreeRTOS/coreJSON.git
GIT_TAG a0cd6122745a879225bf459dd257e79bdd63d37a)
FetchContent_Declare(
tinycbor
# hash: sha256-otueOD8tkzbHHVuOBI6krewYoeteRGAAQWSf0r19P5s=
GIT_REPOSITORY https://github.com/intel/tinycbor.git
GIT_TAG 9924cfed3b95ad6de299ae675064430fdb886216)
FetchContent_Declare(
iot-core-mqtt-file-downloader
GIT_REPOSITORY https://github.com/aws/aws-iot-core-mqtt-file-streams-embedded-c/
GIT_TAG 7264c7115de5b02aacf5430554cc2c7428b43d24)
FetchContent_Declare(
jobs
GIT_REPOSITORY https://github.com/aws/Jobs-for-AWS-IoT-embedded-sdk.git
GIT_TAG f00ec58991147520166106b732c883d2558db477)
# FreeRTOS-Kernel build options
add_library(freertos_config INTERFACE)
target_include_directories(
freertos_config SYSTEM
INTERFACE "${CMAKE_CURRENT_LIST_DIR}/cfg/FreeRTOS-Kernel")
set(FREERTOS_HEAP
"3"
CACHE STRING "" FORCE)
set(FREERTOS_PORT
"GCC_POSIX"
CACHE STRING "" FORCE)
FetchContent_MakeAvailable(FreeRTOS_Kernel coreMQTT backoffAlgorithm coreJSON
iot-core-mqtt-file-downloader tinycbor jobs)
# coreMQTT
include("${coremqtt_SOURCE_DIR}/mqttFilePaths.cmake")
add_library(coreMQTT ${MQTT_SOURCES} ${MQTT_SERIALIZER_SOURCES})
target_include_directories(
coreMQTT
PUBLIC ${MQTT_INCLUDE_PUBLIC_DIRS}
PRIVATE "${CMAKE_CURRENT_LIST_DIR}/cfg/coreMQTT"
INTERFACE "${CMAKE_CURRENT_LIST_DIR}/cfg/coreMQTT/api_cfg")
target_link_libraries(coreMQTT PRIVATE freertos_kernel)
# backoffAlgorithm
include("${backoffalgorithm_SOURCE_DIR}/backoffAlgorithmFilePaths.cmake")
add_library(backoffAlgorithm ${BACKOFF_ALGORITHM_SOURCES})
target_include_directories(backoffAlgorithm
PUBLIC ${BACKOFF_ALGORITHM_INCLUDE_PUBLIC_DIRS})
# coreJSON
include("${corejson_SOURCE_DIR}/jsonFilePaths.cmake")
add_library(coreJSON ${JSON_SOURCES})
target_include_directories(coreJSON PUBLIC ${JSON_INCLUDE_PUBLIC_DIRS})
# tinycbor
add_library(
tinycbor
"${tinycbor_SOURCE_DIR}/src/cborparser.c"
"${tinycbor_SOURCE_DIR}/src/cborencoder.c"
"${tinycbor_SOURCE_DIR}/src/cborencoder_close_container_checked.c")
target_include_directories(tinycbor PUBLIC "${tinycbor_SOURCE_DIR}/src")
# mqtt-wrapper
add_library(mqtt_wrapper
"${CMAKE_CURRENT_LIST_DIR}/lib/mqtt_wrapper/mqtt_wrapper.c")
target_compile_options(mqtt_wrapper PRIVATE -std=c99 -pedantic)
target_link_libraries(mqtt_wrapper PUBLIC coreMQTT)
target_include_directories(mqtt_wrapper
PUBLIC "${CMAKE_CURRENT_LIST_DIR}/lib/mqtt_wrapper")
# iot-core-jobs
include("${jobs_SOURCE_DIR}/jobsFilePaths.cmake")
add_library(iot-core-jobs ${JOBS_SOURCES})
target_compile_options(iot-core-jobs PRIVATE -std=c99 -pedantic)
target_link_libraries(iot-core-jobs PUBLIC coreJSON mqtt_wrapper)
target_include_directories(iot-core-jobs PUBLIC ${JOBS_INCLUDE_PUBLIC_DIRS})
# iot-core-jobs-ota-parser
add_library(iot-core-jobs-ota-parser ${OTA_HANDLER_SOURCES})
target_compile_options(iot-core-jobs-ota-parser PRIVATE -std=c99 -pedantic)
target_link_libraries(iot-core-jobs-ota-parser PUBLIC coreJSON)
target_include_directories(iot-core-jobs-ota-parser
PUBLIC ${OTA_HANDLER_INCLUDES})
# iot-core-mqtt-file-downloader
include(
"${iot-core-mqtt-file-downloader_SOURCE_DIR}/mqttFileDownloaderFilePaths.cmake"
)
add_library(iot-core-mqtt-file-downloader ${MQTT_FILE_DOWNLOADER_SOURCES})
target_compile_options(iot-core-mqtt-file-downloader PRIVATE -std=c99 -pedantic)
target_link_libraries(iot-core-mqtt-file-downloader
PUBLIC coreJSON coreMQTT mqtt_wrapper tinycbor)
target_include_directories(iot-core-mqtt-file-downloader
PUBLIC ${MQTT_FILE_DOWNLOADER_INCLUDES})
add_executable(
coreOTA_Demo
./demo/simple-Ota-Orchestrator/main.c
./demo/simple-Ota-Orchestrator/ota_demo.c
./demo/transport/openssl_posix.c
./demo/transport/sockets_posix.c
./demo/transport/transport_wrapper.c
./demo/utils/clock_posix.c
./demo/utils/freertos_hooks.c)
target_include_directories(
coreOTA_Demo
PUBLIC "${CMAKE_CURRENT_LIST_DIR}/source" "${CMAKE_CURRENT_LIST_DIR}/demo/"
"${CMAKE_CURRENT_LIST_DIR}/cfg")
target_link_libraries(
coreOTA_Demo
PRIVATE coreMQTT
mqtt_wrapper
OpenSSL::SSL
coreJSON
tinycbor
backoffAlgorithm
freertos_kernel
iot-core-jobs
iot-core-jobs-ota-parser
iot-core-mqtt-file-downloader)
find_library(LIBRT rt)
if(LIBRT)
target_link_libraries(coreOTA_Demo PRIVATE rt)
endif()
add_executable(
coreOTA_Agent_Demo
./demo/ota-Agent-Orchestrator/main.c
./demo/ota-Agent-Orchestrator/ota_demo.c
./demo/os/ota_os_freertos.c
./demo/transport/openssl_posix.c
./demo/transport/sockets_posix.c
./demo/transport/transport_wrapper.c
./demo/utils/clock_posix.c
./demo/utils/freertos_hooks.c)
target_include_directories(
coreOTA_Agent_Demo
PUBLIC "${CMAKE_CURRENT_LIST_DIR}/source" "${CMAKE_CURRENT_LIST_DIR}/demo/"
"${CMAKE_CURRENT_LIST_DIR}/cfg")
target_link_libraries(
coreOTA_Agent_Demo
PRIVATE coreMQTT
mqtt_wrapper
OpenSSL::SSL
coreJSON
tinycbor
backoffAlgorithm
freertos_kernel
iot-core-jobs
iot-core-jobs-ota-parser
iot-core-mqtt-file-downloader)
find_library(LIBRT rt)
if(LIBRT)
target_link_libraries(coreOTA_Agent_Demo PRIVATE rt)
endif()