fsfw-example-common/stm32h7/CMakeLists.txt

9 lines
205 B
CMake
Raw Normal View History

2021-07-12 21:21:03 +02:00
target_sources(${TARGET_NAME} PRIVATE
STM32TestTask.cpp
)
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)
add_subdirectory(networking)
endif()