Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFabian Müller <fmueller@owncloud.com>2022-07-04 17:02:50 +0300
committerHannah von Reth <vonreth@kde.org>2022-07-05 09:55:21 +0300
commit9cf9470f8ec8b8a4f039170cf70bc35f134ed482 (patch)
treefba2503a921b5b26c0a318d89c7d3c2049ff82c9 /src
parent3e14eefb263c7d838d12c46aabf8f546ac999155 (diff)
Fix installation of new resources library
Makes sure the new installed library file has a version suffix like all the other libraries. Most important for Linux distro packaging.
Diffstat (limited to 'src')
-rw-r--r--src/resources/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/resources/CMakeLists.txt b/src/resources/CMakeLists.txt
index a66972849..f573ba531 100644
--- a/src/resources/CMakeLists.txt
+++ b/src/resources/CMakeLists.txt
@@ -14,6 +14,8 @@ set_target_properties(owncloudResources PROPERTIES
OUTPUT_NAME "${APPLICATION_EXECUTABLE}Resources"
AUTOUIC ON
AUTORCC ON
+ VERSION ${MIRALL_VERSION}
+ SOVERSION ${MIRALL_SOVERSION}
)
generate_export_header(owncloudResources
@@ -34,4 +36,4 @@ if(Qt5LinguistTools_FOUND)
)
endif()
-install(TARGETS owncloudResources ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) \ No newline at end of file
+install(TARGETS owncloudResources ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})