diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-04-28 14:37:35 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2016-04-28 14:37:35 -0400 |
commit | 17543d3e00ce6d185a226abf9aa3322bc1460607 (patch) | |
tree | 0707fbc4353bc7d233cb1bacd7052e021ad40850 /protocols | |
parent | 89af3f78b2cce23953d4c67603bbc1d09b980bcc (diff) | |
parent | 1124e78dda3e5c77fdd5ec5b8f6a45ce644aaa06 (diff) | |
download | sway-17543d3e00ce6d185a226abf9aa3322bc1460607.tar.xz |
Merge pull request #610 from sleep-walker/master
CMake related improvements
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/CMakeLists.txt b/protocols/CMakeLists.txt index d7516d0c..ff0a2e4d 100644 --- a/protocols/CMakeLists.txt +++ b/protocols/CMakeLists.txt @@ -22,7 +22,7 @@ WAYLAND_ADD_PROTOCOL_SERVER(proto-server-swaylock swaylock ) -add_library(sway-protocols +add_library(sway-protocols STATIC ${proto-client-xdg-shell} ${proto-client-desktop-shell} ${proto-server-desktop-shell} @@ -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}) |