sway/swaygrab/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

16 lines
160 B
CMake

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