X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fprops%2FCMakeLists.txt;h=f347df457d687ebadd1ec6b4d06bfea3d3c412e0;hb=04dc28cb3307a2d78b024f533011628dbe5e5a52;hp=20461af7e2fa9b052d58d801d4dce5f9c3aa33b0;hpb=b9a34b1b05ce9cab1b4b67816d7d24bd2bc364b7;p=simgear.git diff --git a/simgear/props/CMakeLists.txt b/simgear/props/CMakeLists.txt index 20461af7..f347df45 100644 --- a/simgear/props/CMakeLists.txt +++ b/simgear/props/CMakeLists.txt @@ -8,6 +8,7 @@ set(HEADERS propertyObject.hxx props.hxx props_io.hxx + tiedpropertylist.hxx ) set(SOURCES @@ -18,4 +19,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)