mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 03:12:51 +00:00
19 lines
567 B
CMake
19 lines
567 B
CMake
|
|
set( powerdevil_config_common_private_SRCS
|
|
actionconfigwidget.cpp
|
|
actioneditwidget.cpp
|
|
ErrorOverlay.cpp
|
|
)
|
|
|
|
add_library(powerdevilconfigcommonprivate SHARED ${powerdevil_config_common_private_SRCS})
|
|
|
|
target_link_libraries(powerdevilconfigcommonprivate
|
|
${KDE4_KDECORE_LIBS}
|
|
${KDE4_KDEUI_LIBS}
|
|
powerdevilcore
|
|
powerdevilui
|
|
)
|
|
|
|
set_target_properties(powerdevilconfigcommonprivate PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
|
|
|
|
install( TARGETS powerdevilconfigcommonprivate ${INSTALL_TARGETS_DEFAULT_ARGS} )
|