blob: a4989b9cba2f778f42efde6b3f9990432d87af88 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | add_executable(swaymsg
	main.c
)
target_link_libraries(swaymsg
	sway-common
	${JSONC_LIBRARIES}
)
install(
	TARGETS swaymsg
	RUNTIME
	DESTINATION bin
	COMPONENT runtime
)
add_manpage(swaymsg 1)
 |