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

target_link_libraries(swaymsg
	sway-common
	)

install(
	TARGETS swaymsg
	RUNTIME
	DESTINATION bin
	COMPONENT runtime
)