summaryrefslogtreecommitdiffstats
path: root/wayland
diff options
context:
space:
mode:
Diffstat (limited to 'wayland')
-rw-r--r--wayland/CMakeLists.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/wayland/CMakeLists.txt b/wayland/CMakeLists.txt
new file mode 100644
index 00000000..5633dd6e
--- /dev/null
+++ b/wayland/CMakeLists.txt
@@ -0,0 +1,17 @@
1include_directories(
2 ${PROTOCOLS_INCLUDE_DIRS}
3 ${PANGO_INCLUDE_DIRS}
4)
5
6add_library(sway-wayland
7 buffers.c
8 pango.c
9 registry.c
10 window.c
11 )
12
13target_link_libraries(sway-wayland
14 sway-common
15 sway-protocols
16 ${PANGO_LIBRARIES}
17 )