sway/swaymsg/CMakeLists.txt
2015-12-01 22:47:22 +02:00

15 lines
178 B
CMake

file(GLOB sources *.c)
file(GLOB common ../common/*.c)
add_executable(swaymsg
${sources}
${common}
)
install(
TARGETS swaymsg
RUNTIME
DESTINATION bin
COMPONENT runtime
)