mirror of
https://github.com/swaywm/sway.git
synced 2025-01-02 10:26:42 +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
|
|
)
|