]> git.mxchange.org Git - simgear.git/blobdiff - simgear/math/CMakeLists.txt
One more Linux compile fix.
[simgear.git] / simgear / math / CMakeLists.txt
index 861462c91a07fb3fbe074fa3c1995dc5385215e0..55f2b1510712255e260e3c0dc1eb0381b63776e9 100644 (file)
@@ -45,3 +45,10 @@ set(SOURCES
 
 simgear_component(math math "${SOURCES}" "${HEADERS}")
 
+add_executable(math_test SGMathTest.cxx)
+target_link_libraries(math_test sgmath sgstructure sgdebug)
+add_test(math ${EXECUTABLE_OUTPUT_PATH}/math_test)
+
+add_executable(geometry_test SGGeometryTest.cxx)
+target_link_libraries(geometry_test sgmath sgstructure sgdebug)
+add_test(geometry ${EXECUTABLE_OUTPUT_PATH}/geometry_test)