From a88b9181b67f2a64fe990542e208f4b4e1f828e1 Mon Sep 17 00:00:00 2001 From: xDraconian Date: Thu, 4 Jan 2018 08:18:43 +0100 Subject: [PATCH] Enable the test 'test_precipitation' --- simgear/environment/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/simgear/environment/CMakeLists.txt b/simgear/environment/CMakeLists.txt index 4c499af6..ddb53166 100644 --- a/simgear/environment/CMakeLists.txt +++ b/simgear/environment/CMakeLists.txt @@ -21,4 +21,9 @@ else() endif() add_test(metar ${EXECUTABLE_OUTPUT_PATH}/test_metar) + +add_executable(test_precipitation test_precipitation.cxx) +target_link_libraries(test_precipitation ${TEST_LIBS}) +add_test(precipitation ${EXECUTABLE_OUTPUT_PATH}/test_precipitation) + endif(ENABLE_TESTS)