commit cb0ca3c301c6e35df4d67808ae850219630949db parent 49fe25c1067d6b91dda9f096cf3bf3cdd9686528 Author: Drew DeVault <sir@cmpwn.com> Date: Sun, 4 Dec 2016 10:20:15 -0500 Change name of ld-library-path cmake variable Diffstat:
| M | CMakeLists.txt | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -47,9 +47,9 @@ 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) -option(ld-library-path "Configures sway's default LD_LIBRARY_PATH" "/usr/lib") +option(LD_LIBRARY_PATH "Configures sway's default LD_LIBRARY_PATH" "/usr/lib") -add_definitions(-D_LD_LIBRARY_PATH="${ld-library-path}") +add_definitions(-D_LD_LIBRARY_PATH="${LD_LIBRARY_PATH}") find_package(JsonC REQUIRED) find_package(PCRE REQUIRED)