1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-28 16:20:01 +02:00

Set SOVERSION of libtomahawk to current Tomahawk version, we won't give any ABI guarantee in the foreseeable future

This commit is contained in:
Dominik Schmidt
2013-01-18 01:26:47 +01:00
parent a30f1f94e2
commit 79fff5ce0e
2 changed files with 11 additions and 1 deletions

View File

@@ -429,7 +429,15 @@ qt_wrap_ui(libUI_H ${libUI})
SET( libSources ${libSources} ${libUI_H} )
add_library( tomahawklib SHARED ${libSources})
set_target_properties(tomahawklib PROPERTIES AUTOMOC TRUE)
set_target_properties(
tomahawklib
PROPERTIES
AUTOMOC TRUE
VERSION ${TOMAHAWK_VERSION_SHORT}
SOVERSION ${TOMAHAWK_VERSION_SHORT}
)
qt5_use_modules(tomahawklib Widgets Network Sql WebKitWidgets Concurrent Xml UiTools Svg)
IF(QCA2_FOUND)