mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
14 lines
550 B
CMake
14 lines
550 B
CMake
|
|
add_subdirectory( pics )
|
|
include_directories( ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${KDE4_INCLUDES} )
|
|
|
|
########### next target ###############
|
|
|
|
set(kcm_ksplashthemes_PART_SRCS installer.cpp main.cpp )
|
|
kde4_add_plugin(kcm_ksplashthemes ${kcm_ksplashthemes_PART_SRCS})
|
|
target_link_libraries(kcm_ksplashthemes ${KDE4_KIO_LIBS})
|
|
install(TARGETS kcm_ksplashthemes DESTINATION ${KDE4_PLUGIN_INSTALL_DIR} )
|
|
|
|
########### install files ###############
|
|
|
|
install( FILES ksplashthememgr.desktop DESTINATION ${KDE4_SERVICES_INSTALL_DIR} )
|