mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
15 lines
504 B
Diff
15 lines
504 B
Diff
create shared libQZint instead of static one
|
|
---
|
|
diff -r c65c3e1348ca backend_qt/CMakeLists.txt
|
|
--- a/backend_qt/CMakeLists.txt
|
|
+++ b/backend_qt/CMakeLists.txt
|
|
@@ -12,7 +12,7 @@
|
|
qt5_wrap_cpp(QZint_SRCS qzint.h)
|
|
endif()
|
|
|
|
-add_library(${PROJECT_NAME} STATIC ${QZint_SRCS})
|
|
+add_library(${PROJECT_NAME} SHARED ${QZint_SRCS})
|
|
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES SOVERSION "${ZINT_VERSION_MAJOR}.${ZINT_VERSION_MINOR}"
|
|
VERSION ${ZINT_VERSION})
|