diff options
author | Ryan Farley <ryan.farley@gmx.com> | 2019-04-25 16:53:55 -0500 |
---|---|---|
committer | Ryan Farley <ryan.farley@gmx.com> | 2019-04-25 16:53:55 -0500 |
commit | 8df3ad3d2613cb0dd3f034c3f1767d3f7eba056b (patch) | |
tree | 2eb38ead752e9b44c61f9083bade0a085302c0d2 /src/plugins/relay | |
parent | 38535686f841c107cb95ff618f7b152af98a8ff4 (diff) | |
download | weechat-8df3ad3d2613cb0dd3f034c3f1767d3f7eba056b.zip |
cmake: allow custom libdir (fix #1341)
Allows for custom LIBDIR to specified with cmake builds. WEECHAT_LIBDIR
is used for a custom Weechat directory, or set from LIBDIR (as LIBDIR
used to be set).
Diffstat (limited to 'src/plugins/relay')
-rw-r--r-- | src/plugins/relay/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/relay/CMakeLists.txt b/src/plugins/relay/CMakeLists.txt index a33df99ac..a98545c79 100644 --- a/src/plugins/relay/CMakeLists.txt +++ b/src/plugins/relay/CMakeLists.txt @@ -49,4 +49,4 @@ endif() target_link_libraries(relay ${LINK_LIBS} coverage_config) -install(TARGETS relay LIBRARY DESTINATION ${LIBDIR}/plugins) +install(TARGETS relay LIBRARY DESTINATION ${WEECHAT_LIBDIR}/plugins) |