diff options
author | Friedrich W. H. Kossebau <kossebau@kde.org> | 2021-05-02 22:17:42 +0200 |
---|---|---|
committer | Friedrich W. H. Kossebau <kossebau@kde.org> | 2021-05-02 22:17:42 +0200 |
commit | 122125452775fd67a59c0a34e1c9941bc15a8f8d (patch) | |
tree | a0cc94d597f23e147f22dd1ffb1997b8c82243ba /src | |
parent | 1780fb2a237af80ddc1f9cfb70cb892b53b91990 (diff) | |
download | kconfig-122125452775fd67a59c0a34e1c9941bc15a8f8d.tar.gz kconfig-122125452775fd67a59c0a34e1c9941bc15a8f8d.tar.bz2 |
Port away from ECMSetupVersion's deprecated *_VERSION_STRING CMake variable
NO_CHANGELOG
Diffstat (limited to 'src')
-rw-r--r-- | src/core/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/gui/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 0c0aa72c..82800972 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -48,7 +48,7 @@ if(KCONFIG_USE_DBUS) target_link_libraries(KF5ConfigCore PRIVATE Qt5::DBus) endif() -set_target_properties(KF5ConfigCore PROPERTIES VERSION ${KCONFIG_VERSION_STRING} +set_target_properties(KF5ConfigCore PROPERTIES VERSION ${KCONFIG_VERSION} SOVERSION ${KCONFIG_SOVERSION} EXPORT_NAME ConfigCore ) diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt index b6d4d34f..8f37b6e1 100644 --- a/src/gui/CMakeLists.txt +++ b/src/gui/CMakeLists.txt @@ -23,7 +23,7 @@ target_include_directories(KF5ConfigGui INTERFACE "$<INSTALL_INTERFACE:${KDE_INS target_link_libraries(KF5ConfigGui PUBLIC Qt5::Gui Qt5::Xml KF5::ConfigCore) -set_target_properties(KF5ConfigGui PROPERTIES VERSION ${KCONFIG_VERSION_STRING} +set_target_properties(KF5ConfigGui PROPERTIES VERSION ${KCONFIG_VERSION} SOVERSION ${KCONFIG_SOVERSION} EXPORT_NAME ConfigGui ) |