mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
47 lines
1 KiB
CMake
47 lines
1 KiB
CMake
|
|
include_directories( ${KDEBASE_WORKSPACE_SOURCE_DIR}/kdm/kfrontend )
|
|
|
|
########### next target ###############
|
|
|
|
set(kgreet_classic_PART_SRCS kgreet_classic.cpp )
|
|
|
|
|
|
kde4_add_plugin(kgreet_classic ${kgreet_classic_PART_SRCS})
|
|
|
|
|
|
target_link_libraries(kgreet_classic ${KDE4_KDEUI_LIBS})
|
|
|
|
install(TARGETS kgreet_classic DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(kgreet_winbind_PART_SRCS kgreet_winbind.cpp )
|
|
|
|
|
|
kde4_add_plugin(kgreet_winbind ${kgreet_winbind_PART_SRCS})
|
|
|
|
|
|
target_link_libraries(kgreet_winbind ${KDE4_KDEUI_LIBS})
|
|
|
|
install(TARGETS kgreet_winbind DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
########### next target ###############
|
|
|
|
set(kgreet_generic_PART_SRCS kgreet_generic.cpp )
|
|
|
|
|
|
kde4_add_plugin(kgreet_generic ${kgreet_generic_PART_SRCS})
|
|
|
|
|
|
target_link_libraries(kgreet_generic ${KDE4_KDEUI_LIBS})
|
|
|
|
install(TARGETS kgreet_generic DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
|
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install( FILES kgreeterplugin.h DESTINATION ${INCLUDE_INSTALL_DIR} COMPONENT Devel )
|