summaryrefslogtreecommitdiffstats
path: root/swaygrab/CMakeLists.txt
blob: d5468cdae41f35e82371a9ab6a371df517b41bb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
add_executable(swaygrab
	main.c
)

target_link_libraries(swaygrab
	sway-common
	rt
)

install(
	TARGETS swaygrab
	RUNTIME
	DESTINATION bin
	COMPONENT runtime
)