mirror of
https://github.com/NickHu/sway
synced 2025-01-04 23:01:31 +01:00
14 lines
178 B
CMake
14 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
|
|
)
|