mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
cmake: build common code only once
This creates (static) libraries for protocols/, common/, and wayland/.
This commit is contained in:
parent
f76b7f5385
commit
cce9c338c0
9 changed files with 93 additions and 78 deletions
22
protocols/CMakeLists.txt
Normal file
22
protocols/CMakeLists.txt
Normal file
|
@ -0,0 +1,22 @@
|
|||
include(Wayland)
|
||||
|
||||
WAYLAND_ADD_PROTOCOL_CLIENT(proto-client-xdg-shell
|
||||
xdg-shell.xml
|
||||
xdg-shell
|
||||
)
|
||||
WAYLAND_ADD_PROTOCOL_CLIENT(proto-client-desktop-shell
|
||||
desktop-shell.xml
|
||||
desktop-shell
|
||||
)
|
||||
WAYLAND_ADD_PROTOCOL_SERVER(proto-server-desktop-shell
|
||||
desktop-shell.xml
|
||||
desktop-shell
|
||||
)
|
||||
|
||||
add_library(sway-protocols
|
||||
${proto-client-xdg-shell}
|
||||
${proto-client-desktop-shell}
|
||||
${proto-server-desktop-shell}
|
||||
)
|
||||
|
||||
set(PROTOCOLS_INCLUDE_DIRS ${CMAKE_BINARY_DIR}/protocols PARENT_SCOPE)
|
Loading…
Add table
Add a link
Reference in a new issue