mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
28 lines
424 B
CMake
28 lines
424 B
CMake
|
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
set(kio_mbox_PART_SRCS
|
|
mbox.cpp
|
|
mboxfile.cpp
|
|
readmbox.cpp
|
|
stat.cpp
|
|
urlinfo.cpp )
|
|
|
|
|
|
kde4_add_plugin(kio_mbox ${kio_mbox_PART_SRCS})
|
|
|
|
|
|
|
|
target_link_libraries(kio_mbox ${KDE4_KIO_LIBS} )
|
|
|
|
install(TARGETS kio_mbox DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
|
|
########### install files ###############
|
|
|
|
install( FILES mbox.protocol DESTINATION ${SERVICES_INSTALL_DIR})
|
|
|
|
|