708bf948b3
This old standalone test, from Curt back in 2001, was converted to the format required for the CppUnit test suite. As most of simgear/math/sg_geodesy.hxx no longer exists, the code was updated using SGGeod and SGGeoc. Hardcoded values are used to permanently lock in the values currently calculated by simgear.
21 lines
319 B
CMake
21 lines
319 B
CMake
# Add each simgear test category.
|
|
foreach( simgear_test_category
|
|
math
|
|
props
|
|
)
|
|
|
|
add_subdirectory(${simgear_test_category})
|
|
|
|
endforeach( simgear_test_category )
|
|
|
|
|
|
set(TESTSUITE_SOURCES
|
|
${TESTSUITE_SOURCES}
|
|
PARENT_SCOPE
|
|
)
|
|
|
|
|
|
set(TESTSUITE_HEADERS
|
|
${TESTSUITE_HEADERS}
|
|
PARENT_SCOPE
|
|
)
|