aboutsummaryrefslogtreecommitdiffstats
path: root/wayland/CMakeLists.txt
blob: 8e19fc03f8b55dffa38c4224c3df1397ac8373ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include_directories(
	${PROTOCOLS_INCLUDE_DIRS}
	${PANGO_INCLUDE_DIRS}
	${GDK_PIXBUF_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}
	)