10 lines
169 B
CMake
10 lines
169 B
CMake
if(FSFW_ADD_INTERNAL_TESTS)
|
|
add_subdirectory(internal)
|
|
endif()
|
|
|
|
if(FSFW_BUILD_UNITTESTS)
|
|
add_subdirectory(unit)
|
|
else()
|
|
add_subdirectory(integration)
|
|
endif()
|