mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
17 lines
240 B
CMake
17 lines
240 B
CMake
project(swaymsg)
|
|
|
|
file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
|
|
file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
|
|
|
|
add_executable(swaymsg
|
|
${sources}
|
|
${common}
|
|
)
|
|
|
|
install(
|
|
TARGETS swaymsg
|
|
RUNTIME
|
|
DESTINATION bin
|
|
COMPONENT runtime
|
|
)
|