aboutsummaryrefslogtreecommitdiff
path: root/quotest
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-01-25 10:38:02 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-01-25 11:05:32 +0100
commita1b1b96bcd78c6efb0ad3c1ba9c93284497d74a6 (patch)
tree1abc3c067be084802d2e93a566378620f90aff43 /quotest
parentf621367f0706ae3093eedb8cf0d068c34acee6ea (diff)
downloadlibquotient-a1b1b96bcd78c6efb0ad3c1ba9c93284497d74a6.tar.gz
libquotient-a1b1b96bcd78c6efb0ad3c1ba9c93284497d74a6.zip
CMakeLists.txt: refactor configuration of features
- The feature summary is only generated at the end of the configuration. - InstallQuotest feature is defined in quotest/CMakeLists.txt now, and therefore is only available if quotest is getting built (i.e., if BUILD_TESTING is on). - API generation configuration code merged from two places into one.
Diffstat (limited to 'quotest')
-rw-r--r--quotest/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/quotest/CMakeLists.txt b/quotest/CMakeLists.txt
index d17e8620..29c53fae 100644
--- a/quotest/CMakeLists.txt
+++ b/quotest/CMakeLists.txt
@@ -6,3 +6,11 @@ set(quotest_SRCS quotest.cpp)
add_executable(quotest ${quotest_SRCS})
target_link_libraries(quotest PRIVATE Qt5::Core Qt5::Test ${PROJECT_NAME})
+
+option(${PROJECT_NAME}_INSTALL_TESTS "install quotest (former qmc-example) application" ON)
+add_feature_info(InstallQuotest ${PROJECT_NAME}_INSTALL_TESTS
+ "the library functional test suite")
+
+if (${PROJECT_NAME}_INSTALL_TESTS)
+ install(TARGETS quotest RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
+endif ()