diff options
author | Robert Tari <robert@tari.in> | 2021-04-21 21:58:50 +0200 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-04-21 21:58:50 +0200 |
commit | 3adf9ec33ba1e5b6516dfb31f943da67926e86c7 (patch) | |
tree | 359d2cc514826fb177cec39f6303d66649af56d4 /CMakeLists.txt | |
parent | c75d5b57ac727a6380f7444323fadc3e50641e20 (diff) | |
download | ayatana-ido-3adf9ec33ba1e5b6516dfb31f943da67926e86c7.tar.gz ayatana-ido-3adf9ec33ba1e5b6516dfb31f943da67926e86c7.tar.bz2 ayatana-ido-3adf9ec33ba1e5b6516dfb31f943da67926e86c7.zip |
CMakeLists.txt: Drop duplicate status messages
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e6cc77f..b039352 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,10 +46,7 @@ endif() add_subdirectory(src) add_subdirectory(data) -if (NOT ENABLE_TESTS) - message(STATUS "Unit tests disabled") -else() - message(STATUS "Unit tests enabled") +if (ENABLE_TESTS) include(CTest) enable_testing() add_subdirectory(example) |