diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-01-25 21:50:18 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-01-25 21:50:18 +0100 |
commit | ba1d3bda99c04f8783d1a5266f0fa7700ef3eb18 (patch) | |
tree | 30e19794d09f2e4742d20777c9fbbc7f972722c4 /quotest | |
parent | cd71f81a964751cc820074bb345f904b22a2c583 (diff) | |
parent | dbbd2c61c912769c8a0063454862fa2168e7afd9 (diff) | |
download | libquotient-ba1d3bda99c04f8783d1a5266f0fa7700ef3eb18.tar.gz libquotient-ba1d3bda99c04f8783d1a5266f0fa7700ef3eb18.zip |
Merge branch 'fix-ci' into master
Diffstat (limited to 'quotest')
-rw-r--r-- | quotest/CMakeLists.txt | 8 |
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 () |