1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-01-20 22:26:53 +01:00
sway-patched-tray-menu/swaymsg/CMakeLists.txt

17 lines
240 B
Text
Raw Normal View History

2015-11-26 18:41:24 +01:00
project(swaymsg)
file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)
2015-11-26 18:41:24 +01:00
add_executable(swaymsg
2015-12-01 20:46:10 +01:00
${sources}
${common}
2015-11-26 18:41:24 +01:00
)
install(
2015-12-01 20:46:10 +01:00
TARGETS swaymsg
RUNTIME
DESTINATION bin
COMPONENT runtime
2015-12-01 20:05:46 +01:00
)