]> git.mxchange.org Git - simgear.git/blobdiff - simgear/props/CMakeLists.txt
hla: Use raw pointers for HLAFederate::_insert methods.
[simgear.git] / simgear / props / CMakeLists.txt
index f57b9253dd647c87722bfa53f9ac71194cda6e25..7a888d282ad482707039e702f4a0176228ebf82c 100644 (file)
@@ -4,15 +4,21 @@ include (SimGearComponent)
 set(HEADERS 
     AtomicChangeListener.hxx
     ExtendedPropertyAdapter.hxx
+    PropertyBasedElement.hxx
+    PropertyBasedMgr.hxx
     condition.hxx
     propertyObject.hxx
     props.hxx
     props_io.hxx
+    propsfwd.hxx
     tiedpropertylist.hxx
+    vectorPropTemplates.hxx
     )
 
 set(SOURCES 
     AtomicChangeListener.cxx
+    PropertyBasedElement.cxx
+    PropertyBasedMgr.cxx
     condition.cxx
     propertyObject.cxx
     props.cxx
@@ -20,3 +26,13 @@ set(SOURCES
     )
 
 simgear_component(props props "${SOURCES}" "${HEADERS}")
+
+if(ENABLE_TESTS)
+add_executable(test_props props_test.cxx)
+target_link_libraries(test_props SimGearCore)
+add_test(test_props ${EXECUTABLE_OUTPUT_PATH}/test_props)
+
+add_executable(test_propertyObject propertyObject_test.cxx)
+target_link_libraries(test_propertyObject SimGearCore)
+add_test(test_propertyObject ${EXECUTABLE_OUTPUT_PATH}/test_propertyObject)
+endif(ENABLE_TESTS)