summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-18 10:42:56 +0000
committersamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-18 10:42:56 +0000
commit153897691d8aa3b17f49555de61ce694ca92fd20 (patch)
treee153643dce4694beba89adb274152cd518785f11
parent87c659b80aefce6e7ab3a6e7442ff8d526a1e51a (diff)
downloadtdenetwork-15389769.tar.gz
tdenetwork-15389769.zip
[kdenetwork/kpf] added cmake support
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1237374 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--CMakeLists.txt2
-rw-r--r--kpf/CMakeLists.txt25
-rw-r--r--kpf/src/CMakeLists.txt51
3 files changed, 78 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 404b3122..753001ef 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -99,6 +99,7 @@ option( BUILD_KFILE_PLUGINS "Build kfile-plugins" ${BUILD_ALL} )
option( BUILD_KGET "Build kget" ${BUILD_ALL} )
option( BUILD_KNEWSTICKER "Build knewsticker" ${BUILD_ALL} )
option( BUILD_KOPETE "Build kopete" ${BUILD_ALL} )
+option( BUILD_KPF "Build kpf" ${BUILD_ALL} )
option( BUILD_LIBRSS "Build librss" ${BUILD_ALL} )
@@ -129,6 +130,7 @@ tde_conditional_add_subdirectory( BUILD_KFILE_PLUGINS kfile-plugins )
tde_conditional_add_subdirectory( BUILD_KGET kget )
tde_conditional_add_subdirectory( BUILD_KNEWSTICKER knewsticker )
tde_conditional_add_subdirectory( BUILD_KOPETE kopete )
+tde_conditional_add_subdirectory( BUILD_KPF kpf )
tde_conditional_add_subdirectory( BUILD_LIBRSS librss )
diff --git a/kpf/CMakeLists.txt b/kpf/CMakeLists.txt
new file mode 100644
index 00000000..3f1b82e2
--- /dev/null
+++ b/kpf/CMakeLists.txt
@@ -0,0 +1,25 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+add_subdirectory( src )
+
+
+##### other data ################################
+
+tde_install_icons( kpf )
+
+install( FILES
+ kpfapplet.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/kicker/applets )
+
+install( FILES
+ kpfpropertiesdialogplugin.desktop
+ DESTINATION ${SERVICES_INSTALL_DIR} )
diff --git a/kpf/src/CMakeLists.txt b/kpf/src/CMakeLists.txt
new file mode 100644
index 00000000..44c94d33
--- /dev/null
+++ b/kpf/src/CMakeLists.txt
@@ -0,0 +1,51 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include_directories(
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_BINARY_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### kpf_panelapplet (module) ##################
+
+tde_add_kpart( kpf_panelapplet AUTOMOC
+ SOURCES
+ Utils.cpp DirectoryLister.cpp ByteRange.cpp DirSelectWidget.cpp
+ PortValidator.cpp Request.cpp Response.cpp Resource.cpp
+ RootValidator.cpp Server.cpp ServerPrivate.cpp
+ ServerSocket.cpp WebServer.cpp WebServer.skel WebServer.stub
+ WebServerSocket.cpp WebServerManager.cpp WebServerManager.skel
+ SingleServerConfigDialog.cpp System.cpp ConfigDialogPage.cpp
+ ErrorMessageConfigDialog.cpp ActiveMonitor.cpp ActiveMonitorItem.cpp
+ ActiveMonitorWindow.cpp BandwidthGraph.cpp ServerWizard.cpp
+ AppletItem.cpp Applet.cpp Defaults.cpp Help.cpp
+ LINK kdnssd-shared kio-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### kpfpropertiesdialog (module) ##############
+
+tde_add_kpart( kpfpropertiesdialog AUTOMOC
+ SOURCES
+ PropertiesDialogPlugin.cpp StartingKPFDialog.cpp WebServer.stub
+ WebServerManager.stub Defaults.cpp Help.cpp
+ LINK kdnssd-shared kio-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)