fsfw-example-stm32h7-freertos/bsp_stm32h7_freertos/CMakeLists.txt

15 lines
391 B
CMake
Raw Permalink Normal View History

2022-05-22 15:30:38 +02:00
target_sources(${TARGET_NAME} PRIVATE main.cpp)
2021-07-12 21:50:48 +02:00
2022-05-22 15:30:38 +02:00
target_compile_options(${TARGET_NAME} PRIVATE)
2021-07-12 21:50:48 +02:00
2022-05-22 15:30:38 +02:00
target_link_options(${TARGET_NAME} PRIVATE)
2021-07-12 21:50:48 +02:00
2022-05-22 15:30:38 +02:00
target_compile_definitions(${TARGET_NAME}
PRIVATE BOARD_NAME="stm32h743zi-nucleo")
2021-07-12 21:50:48 +02:00
add_subdirectory(core)
add_subdirectory(utility)
add_subdirectory(fsfwconfig)
add_subdirectory(boardtest)
2021-07-12 23:33:05 +02:00
add_subdirectory(NUCLEO-H743ZI)