1
0
Fork 0
flightgear/test_suite/unit_tests/CMakeLists.txt
Edward d'Auvergne c9122ff84b TestSuite: Converted the old tests/test-mktime.cxx program into a unit test.
This required many time related include files, functions, and variables to be
tested for via CMake, and converted to macros via #cmakedefine, so that they
would be automatically set for the test-mktime.cxx file.
2018-03-23 17:26:04 +01:00

21 lines
314 B
CMake

# Add each unit test category.
foreach( unit_test_category
general
Scripting
)
add_subdirectory(${unit_test_category})
endforeach( unit_test_category )
set(TESTSUITE_SOURCES
${TESTSUITE_SOURCES}
PARENT_SCOPE
)
set(TESTSUITE_HEADERS
${TESTSUITE_HEADERS}
PARENT_SCOPE
)