sway/swaymsg/CMakeLists.txt
Christoph Gysin cce9c338c0 cmake: build common code only once
This creates (static) libraries for protocols/, common/, and wayland/.
2015-12-02 12:15:57 +02:00

15 lines
154 B
CMake

add_executable(swaymsg
main.c
)
target_link_libraries(swaymsg
sway-common
)
install(
TARGETS swaymsg
RUNTIME
DESTINATION bin
COMPONENT runtime
)