aboutsummaryrefslogtreecommitdiffstats
path: root/swaygrab/CMakeLists.txt
blob: a5e91e9cd165a14c5338c6ec3842a43d79d31e6a (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
include_directories(
	${JSONC_INCLUDE_DIRS}
	${WLC_INCLUDE_DIRS}
	${XKBCOMMON_INCLUDE_DIRS}
)

add_executable(swaygrab
	main.c
	json.c
)

target_link_libraries(swaygrab
	sway-common
	${JSONC_LIBRARIES}
	rt
	m
)

install(
	TARGETS swaygrab
	RUNTIME
	DESTINATION bin
	COMPONENT runtime
)

add_manpage(swaygrab 1)