mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
cce9c338c0
This creates (static) libraries for protocols/, common/, and wayland/.
15 lines
154 B
CMake
15 lines
154 B
CMake
add_executable(swaymsg
|
|
main.c
|
|
)
|
|
|
|
target_link_libraries(swaymsg
|
|
sway-common
|
|
)
|
|
|
|
install(
|
|
TARGETS swaymsg
|
|
RUNTIME
|
|
DESTINATION bin
|
|
COMPONENT runtime
|
|
)
|