forked from aws/amazon-freertos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
210 lines (179 loc) · 8.58 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
cmake_minimum_required(VERSION 3.13)
# Disable in-source build.
if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
message(FATAL_ERROR "In-source build is not allowed, please use a separate build folder.")
endif()
project(amazon-freertos)
set(PROJECT_VERSION "202203.00")
set(PROJECT_VERSION_MAJOR "202203")
set(PROJECT_VERSION_MINOR "00")
# If it's TI boards, enable split mbedtls source build to
# shorten the build command length to avoid "The command line is too long" error.
if (AFR_BOARD STREQUAL ti.cc3220_launchpad)
set(AFR_SEPARATE_MBEDTLS_SOURCE_BUILD TRUE)
else()
set(AFR_SEPARATE_MBEDTLS_SOURCE_BUILD FALSE)
endif()
# Import global configurations.
include("tools/cmake/afr.cmake")
# Add 3rdparty modules.
if (NOT AFR_ENABLE_UNIT_TESTS)
add_subdirectory("libraries/3rdparty")
endif()
# -------------------------------------------------------------------------------------------------
# Configure target board
# -------------------------------------------------------------------------------------------------
# If AFR_BOARD_PATH is provided, load CMakeList.txt file from this path instead of searching within our
# directory tree. Note that AFR_BOARD_PATH is also defined in the other branch, so if this is the
# second run of cmake this branch will be triggered anyway. But if the user provides AFR_BOARD_PATH,
# we will not have the AFR_VENDOR_PATH, so we can use it to detect if this is just the second run
# of a normal use case or user indeed passed AFR_BOARD_PATH.
# Note: this feature is generally only meant for vendor partners doing a qualification, end users who
# are consuming only this repo should not use it.
if(DEFINED AFR_BOARD_PATH)
if(NOT DEFINED AFR_VENDOR_PATH)
# Add type to this variable so it will display in GUI, value will not change.
set(AFR_BOARD_PATH "" CACHE STRING "Custom board path provided by user")
message("Loading board code from a custom location: ${AFR_BOARD_PATH}.")
endif()
if(NOT DEFINED AFR_BOARD_NAME)
get_filename_component(AFR_BOARD_NAME "${AFR_BOARD_PATH}" NAME CACHE)
endif()
else()
# Get list of supported boards.
afr_get_boards(AFR_SUPPORTED_BOARDS)
set(AFR_BOARD "vendor.board" CACHE STRING "Target board chosen by the user at configure time")
set_property(CACHE AFR_BOARD PROPERTY STRINGS ${AFR_SUPPORTED_BOARDS})
string(REGEX MATCH [[(.+)\.(.+)]] __match_result ${AFR_BOARD})
set(AFR_VENDOR_NAME ${CMAKE_MATCH_1} CACHE INTERNAL "MCU vendor name")
set(AFR_BOARD_NAME ${CMAKE_MATCH_2} CACHE INTERNAL "MCU board name")
# Abort if the target board is not supported, i.e., corresponding folder is not present.
if(NOT AFR_BOARD IN_LIST AFR_SUPPORTED_BOARDS)
message(FATAL_ERROR "Board is not supported: ${AFR_BOARD}")
endif()
# Import board CMake build.
set(AFR_VENDOR_PATH "vendors/${AFR_VENDOR_NAME}" CACHE INTERNAL "")
include("${AFR_VENDOR_PATH}/manifest.cmake")
if(DEFINED AFR_MANIFEST_BOARD_DIR_${AFR_BOARD_NAME})
set(AFR_BOARD_PATH "${AFR_VENDOR_PATH}/${AFR_MANIFEST_BOARD_DIR_${AFR_BOARD_NAME}}" CACHE INTERNAL "")
elseif(DEFINED AFR_MANIFEST_BOARD_DIR)
set(AFR_BOARD_PATH "${AFR_VENDOR_PATH}/${AFR_MANIFEST_BOARD_DIR}/${AFR_BOARD_NAME}" CACHE INTERNAL "")
else()
message(FATAL_ERROR "Could not import board CMakeLists.txt.")
endif()
endif()
# Use include here because we need portable layer targets defined by vendor to be at
# the same directory level as our library components.
include("${AFR_BOARD_PATH}/CMakeLists.txt")
if (AFR_ENABLE_UNIT_TESTS)
return()
endif()
# -------------------------------------------------------------------------------------------------
# Conditionally set mbedtls config
# -------------------------------------------------------------------------------------------------
# Use the FreeRTOS mbedTLS config file required by demos if there's not a preexisting one
get_target_property(mbedtls_comp_defs afr_3rdparty_mbedtls COMPILE_DEFINITIONS)
string(FIND "${mbedtls_comp_defs}" "MBEDTLS_CONFIG_FILE" mbedtls_config_pos)
if( "${mbedtls_config_pos}" EQUAL "-1")
target_include_directories(
afr_3rdparty_mbedtls
PUBLIC
"${AFR_3RDPARTY_DIR}/mbedtls_config"
)
target_compile_definitions(
afr_3rdparty_mbedtls
PUBLIC
-DMBEDTLS_CONFIG_FILE="aws_mbedtls_config.h"
-DCONFIG_MEDTLS_USE_AFR_MEMORY
)
if (${AFR_SEPARATE_MBEDTLS_SOURCE_BUILD})
target_include_directories(
afr_3rdparty_mbedtls_part2
PUBLIC
"${AFR_3RDPARTY_DIR}/mbedtls_config"
)
target_compile_definitions(
afr_3rdparty_mbedtls_part2
PUBLIC
-DMBEDTLS_CONFIG_FILE="aws_mbedtls_config.h"
-DCONFIG_MEDTLS_USE_AFR_MEMORY
)
endif()
endif()
# -------------------------------------------------------------------------------------------------
# FreeRTOS modules
# -------------------------------------------------------------------------------------------------
# Do not prefix the output library file.
set(CMAKE_STATIC_LIBRARY_PREFIX "")
# Initialize all modules.
add_subdirectory("libraries")
add_subdirectory("demos")
add_subdirectory("tests")
# Resolve dependencies.
afr_status("=========================Resolving dependencies==========================")
afr_resolve_dependencies()
if(DEFINED CBMC)
add_subdirectory("tools/cbmc/proofs")
list(FILTER cbmc_proof_names EXCLUDE REGEX "^$")
list(TRANSFORM cbmc_proof_names APPEND "-goto" OUTPUT_VARIABLE all_proof_targets)
add_custom_target("cbmc" DEPENDS ${all_proof_targets})
endif()
# -------------------------------------------------------------------------------------------------
# Summary
# -------------------------------------------------------------------------------------------------
afr_status("")
afr_status("====================Configuration for FreeRTOS====================")
afr_status(" Version: " "${AFR_VERSION}")
afr_status(" Git version: " "${AFR_VERSION_VCS}")
# ================ Target microcontroller =================
afr_status("")
afr_status("Target microcontroller:")
afr_get_board_metadata(vendor_name VENDOR_NAME)
afr_get_board_metadata(board_name DISPLAY_NAME)
afr_get_board_metadata(description DESCRIPTION)
afr_get_board_metadata(family FAMILY_NAME)
afr_get_board_metadata(data_ram DATA_RAM_MEMORY)
afr_get_board_metadata(program_mem PROGRAM_MEMORY)
afr_status(" vendor: " "${vendor_name}")
afr_status(" board: " "${board_name}")
afr_status(" description: " "${description}")
afr_status(" family: " "${family}")
afr_status(" data ram size: " "${data_ram}")
afr_status(" program memory size: " "${program_mem}")
# ===================== Host platform =====================
afr_status("")
afr_status("Host platform:")
afr_status(" OS: " "${CMAKE_HOST_SYSTEM}")
afr_status(" Toolchain: " "${AFR_TOOLCHAIN}")
afr_status(" Toolchain path: " "${CMAKE_FIND_ROOT_PATH}")
afr_status(" CMake generator: " "${CMAKE_GENERATOR}")
# ================ FreeRTOS modules ================
afr_status("")
afr_status("FreeRTOS modules:")
afr_status(" Modules to build: " "${AFR_MODULES_BUILD}")
afr_status(" Enabled by user: " "${AFR_MODULES_ENABLED_USER}")
afr_status(" Enabled by dependency: " "${AFR_MODULES_ENABLED_DEPS}")
afr_status(" 3rdparty dependencies: " "${3RDPARTY_MODULES_ENABLED}")
afr_status(" Available demos: " "${AFR_DEMOS_ENABLED}")
afr_status(" Available tests: " "${AFR_TESTS_ENABLED}")
afr_status("=========================================================================")
afr_status("")
# -------------------------------------------------------------------------------------------------
# Demos and tests
# -------------------------------------------------------------------------------------------------
# Enable us to use targets defined in vendor CMake files.
cmake_policy(SET CMP0079 NEW)
if(TARGET aws_demos)
list(TRANSFORM AFR_DEMOS_ENABLED PREPEND "AFR::" OUTPUT_VARIABLE demos_list)
target_link_libraries(aws_demos PRIVATE ${demos_list})
endif()
if(TARGET aws_tests)
list(TRANSFORM AFR_TESTS_ENABLED PREPEND "AFR::" OUTPUT_VARIABLE tests_list)
target_link_libraries(aws_tests PRIVATE ${tests_list})
endif()
# -------------------------------------------------------------------------------------------------
# Output metadata information
# -------------------------------------------------------------------------------------------------
if(AFR_METADATA_MODE)
afr_write_metadata()
endif()