2022-02-09 21:38:56 +01:00
|
|
|
#simple mode
|
|
|
|
add_executable(${SIMPLE_OBSW_NAME} EXCLUDE_FROM_ALL)
|
|
|
|
target_compile_definitions(${SIMPLE_OBSW_NAME} PRIVATE "Q7S_SIMPLE_MODE")
|
|
|
|
target_sources(${SIMPLE_OBSW_NAME} PUBLIC
|
|
|
|
main.cpp
|
|
|
|
)
|
|
|
|
#I think this is unintentional? (produces linker errors for stuff in /linux)
|
|
|
|
target_link_libraries(${SIMPLE_OBSW_NAME} PUBLIC
|
|
|
|
${LIB_FSFW_NAME}
|
|
|
|
)
|
|
|
|
target_compile_definitions(${SIMPLE_OBSW_NAME} PRIVATE "Q7S_SIMPLE_MODE")
|
|
|
|
add_subdirectory(simple)
|
|
|
|
|
|
|
|
target_sources(${OBSW_NAME} PUBLIC
|
2020-12-29 01:09:59 +01:00
|
|
|
main.cpp
|
|
|
|
)
|
|
|
|
|
2021-06-30 16:15:46 +02:00
|
|
|
add_subdirectory(boardtest)
|
|
|
|
|
2022-02-09 21:38:56 +01:00
|
|
|
add_subdirectory(boardconfig)
|
|
|
|
add_subdirectory(comIF)
|
|
|
|
add_subdirectory(core)
|
|
|
|
add_subdirectory(memory)
|
|
|
|
add_subdirectory(callbacks)
|
|
|
|
add_subdirectory(devices)
|