aboutsummaryrefslogtreecommitdiffstats
path: root/wayland/CMakeLists.txt
blob: 6519cd7dcf09795a1d53a80e5f3c8a86adaac77a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
include_directories(
	${PROTOCOLS_INCLUDE_DIRS}
	${PANGO_INCLUDE_DIRS}
	${GDK_PIXBUF_INCLUDE_DIRS}
	${XKBCOMMON_INCLUDE_DIRS}
)

add_library(sway-wayland
	buffers.c
	pango.c
	registry.c
	window.c
	cairo.c
	)

target_link_libraries(sway-wayland
	sway-common
	sway-protocols
	${PANGO_LIBRARIES}
	${GDK_PIXBUF_LIBRARIES}
	${XKBCOMMON_LIBRARIES}
	)