diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-08-25 21:30:08 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-08-27 08:52:19 +0300 |
commit | 8f992bb6ff8a1995ed757edf39578c986ef700fc (patch) | |
tree | a45ce632366fb8daefcb8847d16d762e1219550b /src/plugins | |
parent | Add scripts/check_license.py (diff) | |
download | rekonq-8f992bb6ff8a1995ed757edf39578c986ef700fc.tar.xz |
Add CMakePresets.json
- add clang-tidy to debug configuration
- add valgrind target: test_memcheck
- add coverage target: test_coverage
- bitbucket pipelines: store test results in junit format for test
reporting
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt index 01b13ae1..ab4d8950 100644 --- a/src/plugins/CMakeLists.txt +++ b/src/plugins/CMakeLists.txt @@ -1,7 +1,7 @@ add_library(pluginloader STATIC pluginloader.cpp pluginloader.h) target_link_libraries(pluginloader PUBLIC Qt6::Core Qt6::Widgets) -if(TESTING) +if(${CMAKE_BUILD_TYPE} STREQUAL "Debug") add_executable(load_plugin test/pluginloader.cpp) target_link_libraries(load_plugin GTest::gtest GTest::gtest_main Qt6::Core) endif() |