mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
22 lines
537 B
CMake
22 lines
537 B
CMake
include_directories(${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
set( kcm_polkitconfig_SRCS
|
|
kcmpolkitconfig.cpp
|
|
)
|
|
|
|
kde4_add_plugin(kcm_polkitconfig ${kcm_polkitconfig_SRCS})
|
|
|
|
target_link_libraries(kcm_polkitconfig
|
|
${KDE4_KDECORE_LIBS}
|
|
${KDE4_KDEUI_LIBRARY}
|
|
polkitkdekcmodulesprivate
|
|
)
|
|
|
|
install(TARGETS kcm_polkitconfig DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install( FILES kcm_polkitconfig.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
|
|