diff options
author | Tomáš Čech <sleep_walker@suse.cz> | 2016-04-28 20:08:41 +0200 |
---|---|---|
committer | Tomáš Čech <sleep_walker@suse.cz> | 2016-04-28 20:08:41 +0200 |
commit | 0468e165cfab8a6bdefd77bf5c726884c62c911c (patch) | |
tree | 1cbff65ca8dd1e9feb9a6fd815cd5503887079f9 | |
parent | 77d8c171d7c29dc965f0f73a342e9b8465680b65 (diff) | |
download | swaybg-0468e165cfab8a6bdefd77bf5c726884c62c911c.tar.gz swaybg-0468e165cfab8a6bdefd77bf5c726884c62c911c.tar.bz2 |
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.
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c5efae9..f8cad40 100644 --- a/CMakeLists.txt +++ b/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 |