X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fprops%2FCMakeLists.txt;h=46d81b35626808cbdcff1bb952d05f5ec864e372;hb=63a8209a839fcc142ab86ef16f323bb54c37521a;hp=f57b9253dd647c87722bfa53f9ac71194cda6e25;hpb=bda8d34c2be22628e4641ef14985d3cd2cb51b90;p=simgear.git diff --git a/simgear/props/CMakeLists.txt b/simgear/props/CMakeLists.txt index f57b9253..46d81b35 100644 --- a/simgear/props/CMakeLists.txt +++ b/simgear/props/CMakeLists.txt @@ -8,6 +8,7 @@ set(HEADERS propertyObject.hxx props.hxx props_io.hxx + propsfwd.hxx tiedpropertylist.hxx ) @@ -20,3 +21,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)