diff options
author | Mykyta Holubakha <hilobakho@gmail.com> | 2017-01-16 01:05:05 +0200 |
---|---|---|
committer | Mykyta Holubakha <hilobakho@gmail.com> | 2017-01-16 01:05:05 +0200 |
commit | 138bcd0cfae78ced64b98274adf6531d3161d828 (patch) | |
tree | b1dcac22e3b5b7f4da6155598c66681608936c5b /CMakeLists.txt | |
parent | 81102e8eacbf72ad0c5e81c935a957a8824a0922 (diff) |
Unset LD_LIBRARY_PATH, unless specified
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ea0e3648..74c79075 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,9 +47,11 @@ option(enable-swaymsg "Enables the swaymsg utility" YES) option(enable-gdk-pixbuf "Use Pixbuf to support more image formats" YES) option(zsh-completions "Zsh shell completions" NO) option(default-wallpaper "Installs the default wallpaper" YES) -set(LD_LIBRARY_PATH "/usr/lib" CACHE STRING "Configures sway's default LD_LIBRARY_PATH") +option(LD_LIBRARY_PATH "Configure sway's default LD_LIBRARY_PATH") -add_definitions(-D_LD_LIBRARY_PATH="${LD_LIBRARY_PATH}") +if (LD_LIBRARY_PATH) + add_definitions(-D_LD_LIBRARY_PATH="${LD_LIBRARY_PATH}") +endif() find_package(JsonC REQUIRED) find_package(PCRE REQUIRED) |