X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fprops%2FCMakeLists.txt;h=f347df457d687ebadd1ec6b4d06bfea3d3c412e0;hb=04dc28cb3307a2d78b024f533011628dbe5e5a52;hp=f57b9253dd647c87722bfa53f9ac71194cda6e25;hpb=ce71b8c1cf761742ab88975442f4037b5e460114;p=simgear.git diff --git a/simgear/props/CMakeLists.txt b/simgear/props/CMakeLists.txt index f57b9253..f347df45 100644 --- a/simgear/props/CMakeLists.txt +++ b/simgear/props/CMakeLists.txt @@ -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)