]> git.mxchange.org Git - simgear.git/blobdiff - simgear/props/CMakeLists.txt
Merge branch 'next' of git://gitorious.org/fg/simgear into next
[simgear.git] / simgear / props / CMakeLists.txt
index f57b9253dd647c87722bfa53f9ac71194cda6e25..f347df457d687ebadd1ec6b4d06bfea3d3c412e0 100644 (file)
@@ -20,3 +20,11 @@ set(SOURCES
     )
 
 simgear_component(props props "${SOURCES}" "${HEADERS}")
+
+add_executable(test_props props_test.cxx)
+target_link_libraries(test_props sgprops sgxml sgstructure sgmisc sgdebug)
+add_test(test_props ${EXECUTABLE_OUTPUT_PATH}/test_props)
+
+add_executable(test_propertyObject propertyObject_test.cxx)
+target_link_libraries(test_propertyObject sgprops sgstructure sgdebug)
+add_test(test_propertyObject ${EXECUTABLE_OUTPUT_PATH}/test_propertyObject)