15 lines
178 B
CMake
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
|
|
)
|