commit bcdeb721893264d4c9c3471c3955ae20ce1b6e89
parent 468ddfb34dd16408ae068f0fb922c75c13df2ef3
Author: Tomáš Čech <sleep_walker@suse.cz>
Date: Thu, 28 Apr 2016 20:13:26 +0200
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.
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt
@@ -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
diff --git a/protocols/CMakeLists.txt b/protocols/CMakeLists.txt
@@ -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}
diff --git a/wayland/CMakeLists.txt b/wayland/CMakeLists.txt
@@ -5,7 +5,7 @@ include_directories(
${WAYLAND_INCLUDE_DIR}
)
-add_library(sway-wayland
+add_library(sway-wayland STATIC
buffers.c
pango.c
registry.c