aboutsummaryrefslogtreecommitdiffstats
path: root/swaygrab/CMakeLists.txt
blob: 9035ac8bf08f47aa61123b98ccf189540750f8f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
include_directories(
	${JSONC_INCLUDE_DIRS}
)

add_executable(swaygrab
	main.c
)

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

install(
	TARGETS swaygrab
	RUNTIME
	DESTINATION bin
	COMPONENT runtime
)

add_manpage(swaygrab 1)