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

add_executable(swaygrab
	main.c
)

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

install(
	TARGETS swaygrab
	RUNTIME
	DESTINATION bin
	COMPONENT runtime
)

add_manpage(swaygrab 1)