commit 468ddfb34dd16408ae068f0fb922c75c13df2ef3
parent 89af3f78b2cce23953d4c67603bbc1d09b980bcc
Author: Tomáš Čech <sleep_walker@suse.cz>
Date: Thu, 28 Apr 2016 20:08:41 +0200
Fix missing include paths
When headers were installed in more sofisticated places (but package
config knows it right), it revealed missing paths in CMake
configuration. Lets fix it.
Diffstat:
8 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt
@@ -1,5 +1,6 @@
include_directories(
${WLC_INCLUDE_DIRS}
+ ${XKBCOMMON_INCLUDE_DIRS}
)
add_library(sway-common
diff --git a/protocols/CMakeLists.txt b/protocols/CMakeLists.txt
@@ -31,3 +31,4 @@ add_library(sway-protocols
)
set(PROTOCOLS_INCLUDE_DIRS ${CMAKE_BINARY_DIR}/protocols PARENT_SCOPE)
+INCLUDE_DIRECTORIES(${WAYLAND_INCLUDE_DIR} ${XKBCOMMON_INCLUDE_DIRS})
diff --git a/sway/CMakeLists.txt b/sway/CMakeLists.txt
@@ -7,6 +7,7 @@ include_directories(
${LIBINPUT_INCLUDE_DIRS}
${CAIRO_INCLUDE_DIRS}
${PANGO_INCLUDE_DIRS}
+ ${WAYLAND_INCLUDE_DIR}
)
add_executable(sway
diff --git a/swaybar/CMakeLists.txt b/swaybar/CMakeLists.txt
@@ -1,9 +1,10 @@
include_directories(
${PROTOCOLS_INCLUDE_DIRS}
- ${WAYLAND_CLIENT_INCLUDE_DIR}
+ ${WAYLAND_INCLUDE_DIR}
${CAIRO_INCLUDE_DIRS}
${PANGO_INCLUDE_DIRS}
${JSONC_INCLUDE_DIRS}
+ ${XKBCOMMON_INCLUDE_DIRS}
)
add_executable(swaybar
diff --git a/swaybg/CMakeLists.txt b/swaybg/CMakeLists.txt
@@ -1,8 +1,9 @@
include_directories(
${PROTOCOLS_INCLUDE_DIRS}
- ${WAYLAND_CLIENT_INCLUDE_DIR}
+ ${WAYLAND_INCLUDE_DIR}
${CAIRO_INCLUDE_DIRS}
${PANGO_INCLUDE_DIRS}
+ ${XKBCOMMON_INCLUDE_DIRS}
)
add_executable(swaybg
diff --git a/swaygrab/CMakeLists.txt b/swaygrab/CMakeLists.txt
@@ -1,6 +1,7 @@
include_directories(
${JSONC_INCLUDE_DIRS}
${WLC_INCLUDE_DIRS}
+ ${XKBCOMMON_INCLUDE_DIRS}
)
add_executable(swaygrab
diff --git a/swaylock/CMakeLists.txt b/swaylock/CMakeLists.txt
@@ -1,10 +1,11 @@
include_directories(
${PROTOCOLS_INCLUDE_DIRS}
- ${WAYLAND_CLIENT_INCLUDE_DIR}
+ ${WAYLAND_INCLUDE_DIR}
${CAIRO_INCLUDE_DIRS}
${PANGO_INCLUDE_DIRS}
${PAM_INCLUDE_DIRS}
${JSONC_INCLUDE_DIRS}
+ ${XKBCOMMON_INCLUDE_DIRS}
)
add_executable(swaylock
diff --git a/wayland/CMakeLists.txt b/wayland/CMakeLists.txt
@@ -2,6 +2,7 @@ include_directories(
${PROTOCOLS_INCLUDE_DIRS}
${PANGO_INCLUDE_DIRS}
${XKBCOMMON_INCLUDE_DIRS}
+ ${WAYLAND_INCLUDE_DIR}
)
add_library(sway-wayland