mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-11-17 07:48:28 +01:00
Explicitly mark static linking in CMake
When no type is given, it depends on BUILD_SHARED_LIBS value which is not desired in this case.
This commit is contained in:
parent
468ddfb34d
commit
bcdeb72189
3 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@ include_directories(
|
|||
${XKBCOMMON_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
add_library(sway-common
|
||||
add_library(sway-common STATIC
|
||||
ipc-client.c
|
||||
list.c
|
||||
log.c
|
||||
|
|
|
@ -22,7 +22,7 @@ WAYLAND_ADD_PROTOCOL_SERVER(proto-server-swaylock
|
|||
swaylock
|
||||
)
|
||||
|
||||
add_library(sway-protocols
|
||||
add_library(sway-protocols STATIC
|
||||
${proto-client-xdg-shell}
|
||||
${proto-client-desktop-shell}
|
||||
${proto-server-desktop-shell}
|
||||
|
|
|
@ -5,7 +5,7 @@ include_directories(
|
|||
${WAYLAND_INCLUDE_DIR}
|
||||
)
|
||||
|
||||
add_library(sway-wayland
|
||||
add_library(sway-wayland STATIC
|
||||
buffers.c
|
||||
pango.c
|
||||
registry.c
|
||||
|
|
Loading…
Reference in a new issue