27 lines
706 B
Plaintext
27 lines
706 B
Plaintext
|
project(PlasmaAppletBrowser)
|
||
|
|
||
|
include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${KDE4_INCLUDES} ${PLASMA_INCLUDE_DIR})
|
||
|
|
||
|
set(
|
||
|
plasma_appletbrowser_SRCS
|
||
|
main.cpp
|
||
|
kcategorizeditemsview.cpp
|
||
|
kcategorizeditemsviewmodels.cpp
|
||
|
kcategorizeditemsviewdelegate.cpp
|
||
|
appletbrowserwindow.cpp
|
||
|
plasmaappletitemmodel.cpp
|
||
|
)
|
||
|
|
||
|
kde4_add_ui_files(
|
||
|
plasma_appletbrowser_SRCS
|
||
|
kcategorizeditemsviewbase.ui
|
||
|
appletbrowserwindowbase.ui
|
||
|
)
|
||
|
|
||
|
kde4_add_executable(plasmaappletbrowser ${plasma_appletbrowser_SRCS})
|
||
|
|
||
|
target_link_libraries(plasmaappletbrowser ${KDE4_KDEUI_LIBS} ${PLASMA_LIBS})
|
||
|
|
||
|
########### install applicaiton ###############
|
||
|
install(TARGETS plasmaappletbrowser DESTINATION ${BIN_INSTALL_DIR} )
|