aboutsummaryrefslogtreecommitdiffstats
path: root/swaybg/CMakeLists.txt
blob: 8016d95911dd72030933c6199d40b8b3c68a3b04 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
project(swaybg)

find_package(Wayland REQUIRED)
find_package(Cairo REQUIRED)
find_package(Pango REQUIRED)

include(Wayland)
WAYLAND_ADD_PROTOCOL_CLIENT(proto-xdg-shell
	${PROJECT_SOURCE_DIR}/../protocols/xdg-shell.xml
	xdg-shell
)
WAYLAND_ADD_PROTOCOL_CLIENT(proto-desktop-shell
	${PROJECT_SOURCE_DIR}/../protocols/desktop-shell.xml
	desktop-shell
)

include_directories(
	${WAYLAND_CLIENT_INCLUDE_DIR}
	${CAIRO_INCLUDE_DIRS}
	${PANGO_INCLUDE_DIRS}
	${CMAKE_CURRENT_BINARY_DIR}
)

file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
file(GLOB wl_sources ${PROJECT_SOURCE_DIR}/../wayland/*.c)

add_executable(swaybg
	${sources}
	${wl_sources}
	${common}
	${proto-xdg-shell}
	${proto-desktop-shell}
)

target_link_libraries(swaybg
	${WAYLAND_CLIENT_LIBRARIES}
	${WAYLAND_CURSOR_LIBRARIES}
	${CAIRO_LIBRARIES}
	${PANGO_LIBRARIES}
	m
)

install(
	TARGETS swaybg
	RUNTIME
	DESTINATION bin
	COMPONENT runtime
)