summaryrefslogtreecommitdiffstats
path: root/swaymsg/CMakeLists.txt
blob: 7616d94233b48aa4bef68c9378db8840a78282a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
file(GLOB sources *.c)
file(GLOB common ../common/*.c)

add_executable(swaymsg
	${sources}
	${common}
)

install(
	TARGETS swaymsg
	RUNTIME
	DESTINATION bin
	COMPONENT runtime
)