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/xfer/CMakeLists.txt | |
parent | adbfd276604bc8025e439ab0ec7345d26a8bc4e8 (diff) | |
download | weechat-6415c09a077e2564fe5e6548e09caa1dade0a3fc.zip |
core: add quotes around paths in CMake files (closes #29)
Diffstat (limited to 'src/plugins/xfer/CMakeLists.txt')
-rw-r--r-- | src/plugins/xfer/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/xfer/CMakeLists.txt b/src/plugins/xfer/CMakeLists.txt index 4d1d77c3a..88cc51411 100644 --- a/src/plugins/xfer/CMakeLists.txt +++ b/src/plugins/xfer/CMakeLists.txt @@ -43,4 +43,4 @@ endif() target_link_libraries(xfer ${LINK_LIBS} coverage_config) -install(TARGETS xfer LIBRARY DESTINATION ${WEECHAT_LIBDIR}/plugins) +install(TARGETS xfer LIBRARY DESTINATION "${WEECHAT_LIBDIR}/plugins") |