diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-03-24 09:02:04 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-03-24 09:38:43 +0100 |
commit | 2612adf8993acf3925f636dd415921c4ff06727f (patch) | |
tree | 3fe7b92d60c759a7d8c542c40f1c9ce32913f113 /src/plugins/guile | |
parent | 47c4329404e0b79731bdaff6ddd57c729bebf76b (diff) | |
download | weechat-2612adf8993acf3925f636dd415921c4ff06727f.zip |
core: add CMake option "ENABLE_CODE_COVERAGE" to compile with code coverage options
This option is OFF by default and should be enabled only for tests, to measure
test coverage.
Diffstat (limited to 'src/plugins/guile')
-rw-r--r-- | src/plugins/guile/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/guile/CMakeLists.txt b/src/plugins/guile/CMakeLists.txt index b4f55d8ae..aee626837 100644 --- a/src/plugins/guile/CMakeLists.txt +++ b/src/plugins/guile/CMakeLists.txt @@ -26,7 +26,7 @@ if(GUILE_FOUND) include_directories(${GUILE_INCLUDE_DIRS}) set(LINK_LIBS) list(APPEND LINK_LIBS ${GUILE_LDFLAGS}) - target_link_libraries(guile ${LINK_LIBS} weechat_plugins_scripts) + target_link_libraries(guile ${LINK_LIBS} weechat_plugins_scripts coverage_config) endif() install(TARGETS guile LIBRARY DESTINATION ${LIBDIR}/plugins) |