fsfw-example-common/stm32h7/CMakeLists.txt

8 lines
202 B
CMake
Raw Normal View History

2022-05-20 08:38:57 +02:00
target_sources(${TARGET_NAME} PRIVATE STM32TestTask.cpp)
2021-07-12 21:21:03 +02:00
2021-07-16 13:20:38 +02:00
option(STM32_ADD_NETWORKING_CODE "Add networking code requiring lwIP" ON)
2021-07-12 23:32:12 +02:00
if(STM32_ADD_NETWORKING_CODE)
2022-05-20 08:38:57 +02:00
add_subdirectory(networking)
endif()