]> git.mxchange.org Git - simgear.git/blobdiff - simgear/props/CMakeLists.txt
Remove using std:: from the metar header, remove HTTP support, add very basic unit...
[simgear.git] / simgear / props / CMakeLists.txt
index 20461af7e2fa9b052d58d801d4dce5f9c3aa33b0..46d81b35626808cbdcff1bb952d05f5ec864e372 100644 (file)
@@ -8,6 +8,8 @@ set(HEADERS
     propertyObject.hxx
     props.hxx
     props_io.hxx
+    propsfwd.hxx
+    tiedpropertylist.hxx
     )
 
 set(SOURCES 
@@ -18,4 +20,12 @@ set(SOURCES
     props_io.cxx
     )
 
-simgear_component(props props "${SOURCES}" "${HEADERS}")
\ No newline at end of file
+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)