diff --git a/libkopete/avdevice/CMakeLists.txt b/libkopete/avdevice/CMakeLists.txt index 6c68f4898..78a614871 100644 --- a/libkopete/avdevice/CMakeLists.txt +++ b/libkopete/avdevice/CMakeLists.txt @@ -1,49 +1,49 @@ if (LIBV4L2_FOUND) include_directories( ${KOPETE_INCLUDES} ${LIBV4L2_INCLUDE_DIR} ) add_definitions(-DHAVE_LIBV4L2) else (LIBV4L2_FOUND) include_directories( ${KOPETE_INCLUDES} ) endif (LIBV4L2_FOUND) include(CheckIncludeFile) check_include_file(linux/videodev.h HAVE_V4L) if(HAVE_V4L) add_definitions(-DHAVE_V4L) endif(HAVE_V4L) ########### next target ############### set(kopete_videodevice_LIB_SRCS videodevice.cpp videoinput.cpp videodevicepool.cpp bayer.cpp sonix_compress.cpp ) add_library(kopete_videodevice SHARED ${kopete_videodevice_LIB_SRCS}) if (LIBV4L2_FOUND) target_link_libraries(kopete_videodevice Qt5::Gui KF5::KDELibs4Support ${LIBV4L2_LIBRARY}) else (LIBV4L2_FOUND) target_link_libraries(kopete_videodevice Qt5::Gui KF5::KDELibs4Support ) endif (LIBV4L2_FOUND) -set_target_properties(kopete_videodevice PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} ) +set_target_properties(kopete_videodevice PROPERTIES VERSION 1.0.0 SOVERSION 1 ) install(TARGETS kopete_videodevice ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) ########### next target ############### ########### install files ############### diff --git a/protocols/oscar/CMakeLists.txt b/protocols/oscar/CMakeLists.txt index 9df89a093..2da7a1c3e 100644 --- a/protocols/oscar/CMakeLists.txt +++ b/protocols/oscar/CMakeLists.txt @@ -1,51 +1,51 @@ add_subdirectory( liboscar ) add_subdirectory( aim ) add_subdirectory( icq ) add_subdirectory( icons ) include_directories( ${KOPETE_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR}/liboscar/ ${CMAKE_CURRENT_SOURCE_DIR}/liboscar/utils ${CMAKE_CURRENT_SOURCE_DIR}/liboscar/tasks ) ########### next target ############### set(kopete_oscar_LIB_SRCS oscarprotocol.cpp oscaraccount.cpp oscarcontact.cpp oscarmyselfcontact.cpp oscarencodingselectiondialog.cpp oscarlistnonservercontacts.cpp oscarversionupdater.cpp oscarprivacyengine.cpp aimcontactbase.cpp icqcontactbase.cpp oscarpresence.cpp oscarpresencesdataclasses.cpp oscarstatusmanager.cpp nscainfoevent.cpp) ki18n_wrap_ui(kopete_oscar_LIB_SRCS oscarencodingselectionbase.ui oscarlistcontactsbase.ui ) add_library(kopete_oscar SHARED ${kopete_oscar_LIB_SRCS}) target_link_libraries(kopete_oscar KF5::KIOCore kopete oscar) -set_target_properties(kopete_oscar PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} ) +set_target_properties(kopete_oscar PROPERTIES VERSION 1.0.0 SOVERSION 1 ) install(TARGETS kopete_oscar ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) ########### install files ###############