From f3f77f9ff1912a2b05304ba8a5278f42e16b6c1b Mon Sep 17 00:00:00 2001 From: Yacine Hmito Date: Tue, 1 Dec 2015 01:23:16 +0100 Subject: FALLBACK_CONFIG_DIR did not work. Fixed. - Flag was ignored. Now it's taken into account. - Missing trailing slashes in path now behaves properly. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e1e1dde..68dd7fa3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,8 @@ cmake_minimum_required(VERSION 3.1.0) project(sway C) -set(FALLBACK_CONFIG_DIR "/etc/sway/") +set(FALLBACK_CONFIG_DIR "/etc/sway" CACHE PATH + "Fallback config directory defaults to /etc/sway") add_definitions('-DFALLBACK_CONFIG_DIR=\"${FALLBACK_CONFIG_DIR}\"') set(CMAKE_C_FLAGS "-g") -- cgit v1.2.3-54-g00ecf