1
0
Fork 0
flightgear/test_suite/system_tests/subsystems/CMakeLists.txt
Edward d'Auvergne 45243c96e8 TestSuite: System tests for subsystem creation via the global registrations.
This covers all instantiated SGSubsystem derived classes, i.e. those that are
not base classes, including subsystem groups.  Both non-instanced and instanced
subsystem creation is tested.  The tests for subsystems yet to be registered are
commented out.
2022-11-17 15:57:39 +00:00

14 lines
425 B
CMake

set(TESTSUITE_SOURCES
${TESTSUITE_SOURCES}
${CMAKE_CURRENT_SOURCE_DIR}/TestSuite.cxx
${CMAKE_CURRENT_SOURCE_DIR}/test_instanced_creation.cxx
${CMAKE_CURRENT_SOURCE_DIR}/test_noninstanced_creation.cxx
PARENT_SCOPE
)
set(TESTSUITE_HEADERS
${TESTSUITE_HEADERS}
${CMAKE_CURRENT_SOURCE_DIR}/test_instanced_creation.hxx
${CMAKE_CURRENT_SOURCE_DIR}/test_noninstanced_creation.hxx
PARENT_SCOPE
)