diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-05-13 11:59:18 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-05-13 11:59:18 +0200 |
commit | 6415c09a077e2564fe5e6548e09caa1dade0a3fc (patch) | |
tree | 6dfb5429f01ffc41e9f5b8375531e0482e498982 /src/plugins/fset | |
parent | adbfd276604bc8025e439ab0ec7345d26a8bc4e8 (diff) | |
download | weechat-6415c09a077e2564fe5e6548e09caa1dade0a3fc.zip |
core: add quotes around paths in CMake files (closes #29)
Diffstat (limited to 'src/plugins/fset')
-rw-r--r-- | src/plugins/fset/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/fset/CMakeLists.txt b/src/plugins/fset/CMakeLists.txt index 0d70b68a5..f004fcd6a 100644 --- a/src/plugins/fset/CMakeLists.txt +++ b/src/plugins/fset/CMakeLists.txt @@ -32,4 +32,4 @@ set_target_properties(fset PROPERTIES PREFIX "") target_link_libraries(fset coverage_config) -install(TARGETS fset LIBRARY DESTINATION ${WEECHAT_LIBDIR}/plugins) +install(TARGETS fset LIBRARY DESTINATION "${WEECHAT_LIBDIR}/plugins") |