summaryrefslogtreecommitdiffstats
path: root/wayland/CMakeLists.txt
blob: 54fe3e23cb4ae72781a23e94268fb91f23c399e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
include_directories(
	${PROTOCOLS_INCLUDE_DIRS}
	${PANGO_INCLUDE_DIRS}
	${XKBCOMMON_INCLUDE_DIRS}
	${WAYLAND_INCLUDE_DIR}
)

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

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

if (WITH_GDK_PIXBUF)
  include_directories(
	  ${GDK_PIXBUF_INCLUDE_DIRS}
  )
  target_link_libraries(sway-wayland
	  ${GDK_PIXBUF_LIBRARIES}
  )
endif()