This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
fsfw_example_public/bsp_stm32_freertos/CMakeLists.txt

22 lines
392 B
CMake

target_sources(${TARGET_NAME} PRIVATE
main.cpp
startup_stm32h743xx.s
)
target_compile_options(${TARGET_NAME} PRIVATE
)
target_link_options(${TARGET_NAME} PRIVATE
)
target_compile_definitions(${TARGET_NAME} PRIVATE
BOARD_NAME="stm32h743zi-nucleo"
)
add_subdirectory(STM32CubeH7)
add_subdirectory(core)
add_subdirectory(utility)
add_subdirectory(fsfwconfig)
add_subdirectory(boardtest)