summaryrefslogtreecommitdiffstats
path: root/swaybar/CMakeLists.txt
blob: 7f3cb383428a5c55b73ae1a4aef88f57f051c041 (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
include_directories(
	${PROTOCOLS_INCLUDE_DIRS}
	${WAYLAND_CLIENT_INCLUDE_DIR}
	${CAIRO_INCLUDE_DIRS}
	${PANGO_INCLUDE_DIRS}
	${JSONC_INCLUDE_DIRS}
)

add_executable(swaybar
	main.c
	config.c
	render.c
	bar.c
	status_line.c
	ipc.c
)

target_link_libraries(swaybar
	sway-common
	sway-wayland
	${WAYLAND_CLIENT_LIBRARIES}
	${WAYLAND_CURSOR_LIBRARIES}
	${CAIRO_LIBRARIES}
	${PANGO_LIBRARIES}
	${JSONC_LIBRARIES}
	m
)

install(
	TARGETS swaybar
	RUNTIME
	DESTINATION bin
	COMPONENT runtime
)