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

target_link_libraries(swaymsg
	sway-common
	)

install(
	TARGETS swaymsg
	RUNTIME
	DESTINATION bin
	COMPONENT runtime
)

add_manpage(swaymsg 1)