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 "202012.01")
set(PROJECT_VERSION_MAJOR "202012")
set(PROJECT_VERSION_MINOR "01")
# 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
)
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()