summaryrefslogtreecommitdiffstats
path: root/quanta/components
diff options
context:
space:
mode:
authorsamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-16 14:39:07 +0000
committersamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-16 14:39:07 +0000
commit039cc9f8f7c3b81ca85336b02efa49e8e26dbacd (patch)
tree5de007445ec5416ecbc4c2db1696870d124596b2 /quanta/components
parent7af884d886e2428d5b28e9cf7d81c97d7e378123 (diff)
downloadtdewebdev-039cc9f8f7c3b81ca85336b02efa49e8e26dbacd.tar.gz
tdewebdev-039cc9f8f7c3b81ca85336b02efa49e8e26dbacd.zip
[kdewebdev/quanta] initial cmake support
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1214824 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'quanta/components')
-rw-r--r--quanta/components/CMakeLists.txt18
-rw-r--r--quanta/components/csseditor/CMakeLists.txt39
-rw-r--r--quanta/components/csseditor/data/CMakeLists.txt14
-rw-r--r--quanta/components/debugger/CMakeLists.txt49
-rw-r--r--quanta/components/debugger/dbgp/CMakeLists.txt39
-rw-r--r--quanta/components/debugger/gubed/CMakeLists.txt37
-rw-r--r--quanta/components/debugger/interfaces/CMakeLists.txt26
-rw-r--r--quanta/components/framewizard/CMakeLists.txt31
-rw-r--r--quanta/components/tableeditor/CMakeLists.txt27
9 files changed, 280 insertions, 0 deletions
diff --git a/quanta/components/CMakeLists.txt b/quanta/components/CMakeLists.txt
new file mode 100644
index 00000000..7e0cad97
--- /dev/null
+++ b/quanta/components/CMakeLists.txt
@@ -0,0 +1,18 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+# FIXME cvsservice is not ported
+
+add_subdirectory( csseditor )
+add_subdirectory( framewizard )
+add_subdirectory( tableeditor )
+add_subdirectory( debugger )
+# add_subdirectory( cvsservice )
diff --git a/quanta/components/csseditor/CMakeLists.txt b/quanta/components/csseditor/CMakeLists.txt
new file mode 100644
index 00000000..83e9068c
--- /dev/null
+++ b/quanta/components/csseditor/CMakeLists.txt
@@ -0,0 +1,39 @@
+#################################################
+#
+# (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( data )
+
+include_directories(
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_SOURCE_DIR}/lib
+ ${CMAKE_SOURCE_DIR}/quanta/src
+ ${CMAKE_SOURCE_DIR}/quanta/project
+ ${CMAKE_SOURCE_DIR}/quanta/parsers
+ ${CMAKE_SOURCE_DIR}/quanta/utility
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+
+##### csseditor (static) ########################
+
+tde_add_library( csseditor STATIC_PIC AUTOMOC
+ SOURCES
+ fontfamilychoosers.ui cssselectors.ui
+ csseditors.ui fontfamilychooser.cpp
+ cssselector.cpp csseditor.cpp specialsb.cpp
+ doubleeditors.cpp qmyhighlighter.cpp
+ colorrequester.cpp propertysetter.cpp
+ shorthandformer.cpp colorslider.cpp
+ csseditor_globals.cpp tlpeditors.cpp
+ styleeditor.cpp stylesheetparser.cpp
+ cssshpropertyparser.cpp percentageeditor.cpp
+)
diff --git a/quanta/components/csseditor/data/CMakeLists.txt b/quanta/components/csseditor/data/CMakeLists.txt
new file mode 100644
index 00000000..ad19411c
--- /dev/null
+++ b/quanta/components/csseditor/data/CMakeLists.txt
@@ -0,0 +1,14 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+install( FILES
+ config.xml pseudo.xml atrules.xml dtdTags.xml
+ DESTINATION ${DATA_INSTALL_DIR}/quanta/csseditor )
diff --git a/quanta/components/debugger/CMakeLists.txt b/quanta/components/debugger/CMakeLists.txt
new file mode 100644
index 00000000..6a9e7609
--- /dev/null
+++ b/quanta/components/debugger/CMakeLists.txt
@@ -0,0 +1,49 @@
+#################################################
+#
+# (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( interfaces )
+add_subdirectory( gubed )
+add_subdirectory( dbgp )
+
+include_directories(
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}/interfaces
+ ${CMAKE_SOURCE_DIR}/lib
+ ${CMAKE_SOURCE_DIR}/quanta/src
+ ${CMAKE_SOURCE_DIR}/quanta/project
+ ${CMAKE_SOURCE_DIR}/quanta/parsers
+ ${CMAKE_SOURCE_DIR}/quanta/utility
+ ${CMAKE_SOURCE_DIR}/quanta/messages
+ ${CMAKE_SOURCE_DIR}/quanta/parts/preview
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+
+##### debuggermanager (static) ##################
+
+tde_add_library( debuggermanager STATIC_PIC AUTOMOC
+ SOURCES
+ debuggermanager.cpp debuggerbreakpoint.cpp
+ quantadebuggerinterface.cpp debuggervariable.cpp
+ debuggerui.cpp variableslistview.cpp
+ debuggerbreakpointlist.cpp
+ debuggervariablesets.ui
+ debuggerbreakpointview.cpp
+ pathmapper.cpp pathmapperdialogs.ui
+ pathmapperdialog.cpp pathmapperdialog.h
+ conditionalbreakpointdialogs.ui
+ conditionalbreakpointdialog.cpp
+ conditionalbreakpointdialog.h
+ backtracelistview.cpp
+ LINK debuggerinterface-static
+)
diff --git a/quanta/components/debugger/dbgp/CMakeLists.txt b/quanta/components/debugger/dbgp/CMakeLists.txt
new file mode 100644
index 00000000..868fc177
--- /dev/null
+++ b/quanta/components/debugger/dbgp/CMakeLists.txt
@@ -0,0 +1,39 @@
+#################################################
+#
+# (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_SOURCE_DIR}/quanta/components/debugger
+ ${CMAKE_SOURCE_DIR}/quanta/components/debugger/interfaces
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### other data ################################
+
+install( FILES quantadebuggerdbgp.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
+
+
+##### quantadebuggerdbgp (module) ###############
+
+tde_add_kpart( quantadebuggerdbgp AUTOMOC
+ SOURCES
+ quantadebuggerdbgp.cpp dbgpsettingss.ui
+ dbgpsettings.cpp dbgpnetwork.cpp
+ qbytearrayfifo.cpp
+ LINK debuggerinterface-static kio-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
diff --git a/quanta/components/debugger/gubed/CMakeLists.txt b/quanta/components/debugger/gubed/CMakeLists.txt
new file mode 100644
index 00000000..077fdb4f
--- /dev/null
+++ b/quanta/components/debugger/gubed/CMakeLists.txt
@@ -0,0 +1,37 @@
+#################################################
+#
+# (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_SOURCE_DIR}/quanta/components/debugger
+ ${CMAKE_SOURCE_DIR}/quanta/components/debugger/interfaces
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### other data ################################
+
+install( FILES quantadebuggergubed.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
+
+
+##### quantadebuggergubed (module) ##############
+
+tde_add_kpart( quantadebuggergubed AUTOMOC
+ SOURCES
+ gubedsettingss.ui quantadebuggergubed.cpp gubedsettings.cpp
+ LINK debuggerinterface-static kdeui-shared
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
diff --git a/quanta/components/debugger/interfaces/CMakeLists.txt b/quanta/components/debugger/interfaces/CMakeLists.txt
new file mode 100644
index 00000000..9778dbe0
--- /dev/null
+++ b/quanta/components/debugger/interfaces/CMakeLists.txt
@@ -0,0 +1,26 @@
+#################################################
+#
+# (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_SOURCE_DIR}/quanta/components/debugger
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+install( FILES quantadebugger.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR} )
+
+
+##### debuggerinterface (static) ################
+
+tde_add_library( debuggerinterface STATIC_PIC AUTOMOC
+ SOURCES debuggerinterface.cpp debuggerclient.cpp
+)
diff --git a/quanta/components/framewizard/CMakeLists.txt b/quanta/components/framewizard/CMakeLists.txt
new file mode 100644
index 00000000..0a1f83a1
--- /dev/null
+++ b/quanta/components/framewizard/CMakeLists.txt
@@ -0,0 +1,31 @@
+#################################################
+#
+# (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_SOURCE_DIR}/lib
+ ${CMAKE_SOURCE_DIR}/quanta/project
+ ${CMAKE_SOURCE_DIR}/quanta/components/framewizard
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+
+##### framewizard (static) ######################
+
+tde_add_library( framewizard STATIC_PIC AUTOMOC
+ SOURCES
+ fmfpeditors.ui fmrceditors.ui framewizards.ui
+ fwglobal.cpp areaattributedb.cpp
+ selectablearea.cpp treenode.cpp
+ visualframeeditor.cpp fmfpeditor.cpp
+ fmrceditor.cpp framewizard.cpp
+)
diff --git a/quanta/components/tableeditor/CMakeLists.txt b/quanta/components/tableeditor/CMakeLists.txt
new file mode 100644
index 00000000..e6a7d8a9
--- /dev/null
+++ b/quanta/components/tableeditor/CMakeLists.txt
@@ -0,0 +1,27 @@
+#################################################
+#
+# (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_SOURCE_DIR}/quanta/src
+ ${CMAKE_SOURCE_DIR}/quanta/parsers
+ ${CMAKE_SOURCE_DIR}/quanta/utility
+ ${CMAKE_SOURCE_DIR}/quanta/dialogs/tagdialogs
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+
+##### tableeditor (static) ######################
+
+tde_add_library( tableeditor STATIC_PIC AUTOMOC
+ SOURCES tableeditors.ui tableeditor.cpp tableitem.cpp
+)