Ulrich Mohr
4d154b7cee
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
- /mission is a library now, in preparation of unittests (which bring their own main) - eive-simple is now only available in bsp=arm/q7s (but is still not compiling) - watchdog and simple are their own executables, not configurations any more - moved some q7s specific code into /bsp-q7s to flatten if-hierarchy in main CMakeLists.txt - compiler and linker options are not globally applied to all targets - linux is the default fsfw osal now, as current code does not compile on hosted
30 lines
702 B
CMake
30 lines
702 B
CMake
#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
|
|
main.cpp
|
|
)
|
|
|
|
add_subdirectory(boardtest)
|
|
|
|
|
|
add_subdirectory(boardconfig)
|
|
add_subdirectory(comIF)
|
|
add_subdirectory(gpio)
|
|
add_subdirectory(core)
|
|
add_subdirectory(memory)
|
|
add_subdirectory(callbacks)
|
|
add_subdirectory(devices)
|
|
|