eive-obsw/linux/CMakeLists.txt

19 lines
416 B
CMake
Raw Normal View History

add_subdirectory(utility)
2022-03-26 16:38:42 +01:00
add_subdirectory(callbacks)
add_subdirectory(boardtest)
2021-05-17 16:37:29 +02:00
add_subdirectory(devices)
add_subdirectory(ipcore)
2023-03-24 19:53:09 +01:00
add_subdirectory(com)
2023-03-24 21:01:00 +01:00
add_subdirectory(acs)
2022-03-26 16:38:42 +01:00
2022-11-10 17:42:19 +01:00
if(EIVE_ADD_LINUX_FSFWCONFIG)
add_subdirectory(fsfwconfig)
endif()
2023-01-09 15:19:15 +01:00
# Dependency on proprietary library
if(TGT_BSP MATCHES "arm/q7s")
add_subdirectory(csp)
endif()
2022-11-15 17:03:46 +01:00
target_sources(${OBSW_NAME} PUBLIC ObjectFactory.cpp scheduling.cpp)