diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-01-25 09:06:31 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-01-25 09:06:31 +0100 |
commit | 4920adbc13db417756a0ee4c033fad96b8249eea (patch) | |
tree | a9858d7d36d872d0a8c823080578232531f64122 | |
parent | ced197fc6606c0f12eee161408742da54f40411b (diff) | |
download | libquotient-4920adbc13db417756a0ee4c033fad96b8249eea.tar.gz libquotient-4920adbc13db417756a0ee4c033fad96b8249eea.zip |
CMakeLists.txt: include(CTest)
It's a missing line from the recent autotests introduction. Without it
CMake doesn't introduce BUILD_TESTING option, and if you explicitly
pass it, fails to configure the project.
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0bc3a559..a458c9ff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,6 +10,7 @@ message(STATUS) message(STATUS "Configuring ${PROJECT_NAME} ${PROJECT_VERSION} ==>") include(FeatureSummary) +include(CTest) option(${PROJECT_NAME}_INSTALL_TESTS "install quotest (former qmc-example) application" ON) add_feature_info(InstallQuotest ${PROJECT_NAME}_INSTALL_TESTS |