set(SOURCES fwk_platform.c fwk_platform_flash.c fwk_platform_extflash.c fwk_platform_ota.c ) set(INCLUDES ${CMAKE_CURRENT_SOURCE_DIR} configs ) add_library(${CONNFWK_PLATFORM_LIB} ${SOURCES}) # Making those includes PUBLIC will share them to the other targets linking this lib target_include_directories(${CONNFWK_PLATFORM_LIB} PUBLIC ${INCLUDES}) # Get common configs from the connfwk-config interface target_link_libraries(${CONNFWK_PLATFORM_LIB} PRIVATE connfwk-config connfwk-platform-${CONNFWK_PLATFORM_FAMILY} PUBLIC ${CONNFWK_MCUX_SDK_LIB} connfwk-FunctionLib ) if(PROJECT_IS_TOP_LEVEL) connfwk_target_set_linker_script(${CONNFWK_PLATFORM_LIB} PUBLIC ${CONNFWK_PLATFORM_LINKER_FILE}) # Rebuild executables if the linker script is changed set_target_properties(connfwk-config PROPERTIES INTERFACE_LINK_DEPENDS ${CONNFWK_PLATFORM_LINKER_FILE}) connfwk_target_generate_map_file(${CONNFWK_PLATFORM_LIB} PUBLIC ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/$.map) endif()