minor fixes

This commit is contained in:
2021-07-12 23:32:12 +02:00
parent ff6025d04d
commit 20842a26af
3 changed files with 9 additions and 5 deletions

View File

@ -2,4 +2,8 @@ target_sources(${TARGET_NAME} PRIVATE
STM32TestTask.cpp
)
add_subdirectory(networking)
option(STM32_ADD_NETWORKING_CODE "Add networking code requiring lwIP" OFF)
if(STM32_ADD_NETWORKING_CODE)
add_subdirectory(networking)
endif()