git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1214824 283d02a7-25f6-0310-bc7c-ecb5cbfe19dav3.5.13-sru
parent
7af884d886
commit
039cc9f8f7
@ -0,0 +1,82 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2010-2011 Serghei Amelian
|
||||||
|
# serghei (DOT) amelian (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
cmake_minimum_required( VERSION 2.6 )
|
||||||
|
|
||||||
|
|
||||||
|
##### general package setup #####################
|
||||||
|
|
||||||
|
project( kdewebdev )
|
||||||
|
|
||||||
|
|
||||||
|
##### include essential cmake modules ###########
|
||||||
|
|
||||||
|
include( CheckCXXSourceCompiles )
|
||||||
|
include( CheckFunctionExists )
|
||||||
|
include( CheckIncludeFileCXX )
|
||||||
|
include( CheckStructHasMember )
|
||||||
|
include( CheckSymbolExists )
|
||||||
|
include( CheckTypeSize )
|
||||||
|
include( FindPkgConfig )
|
||||||
|
|
||||||
|
|
||||||
|
##### include our cmake modules #################
|
||||||
|
|
||||||
|
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
|
||||||
|
include( TDEMacros )
|
||||||
|
|
||||||
|
|
||||||
|
##### setup install paths #######################
|
||||||
|
|
||||||
|
include( TDESetupPaths )
|
||||||
|
tde_setup_paths( )
|
||||||
|
|
||||||
|
|
||||||
|
##### optional stuff ############################
|
||||||
|
|
||||||
|
# option( WITH_LIBVISUAL "Enable libvisual support" OFF )
|
||||||
|
# option( WITH_KONQSIDEBAR "Enable konqsidebar plugin" OFF )
|
||||||
|
# option( WITH_XINE "Enable xine-engine support" OFF )
|
||||||
|
# option( WITH_LIBGPOD "Enable iPod support from libgpod" OFF )
|
||||||
|
|
||||||
|
|
||||||
|
##### user requested modules ####################
|
||||||
|
|
||||||
|
option( BUILD_ALL "Build all" OFF )
|
||||||
|
option( BUILD_QUANTA "Build Quanta" ${BUILD_ALL} )
|
||||||
|
|
||||||
|
|
||||||
|
##### configure checks ##########################
|
||||||
|
|
||||||
|
include( ConfigureChecks.cmake )
|
||||||
|
|
||||||
|
|
||||||
|
###### global compiler settings #################
|
||||||
|
|
||||||
|
add_definitions(
|
||||||
|
-DHAVE_CONFIG_H
|
||||||
|
${TQT_CFLAGS_OTHER}
|
||||||
|
)
|
||||||
|
|
||||||
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include tqt.h" )
|
||||||
|
set( CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined" )
|
||||||
|
set( CMAKE_MODULE_LINKER_FLAGS "-Wl,--no-undefined" )
|
||||||
|
|
||||||
|
|
||||||
|
##### source directories ########################
|
||||||
|
|
||||||
|
add_subdirectory( lib )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_QUANTA quanta )
|
||||||
|
|
||||||
|
|
||||||
|
##### write configure files #####################
|
||||||
|
|
||||||
|
configure_file( config.h.cmake config.h @ONLY )
|
@ -0,0 +1,33 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2010 Serghei Amelian
|
||||||
|
# serghei (DOT) amelian (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
# libxml-2.0
|
||||||
|
pkg_search_module( LIBXML libxml-2.0 )
|
||||||
|
if( LIBXML_FOUND )
|
||||||
|
if( ${LIBXML_VERSION} VERSION_LESS "2.6" )
|
||||||
|
tde_message_fatal( "libxml-2.0 version must be at least 2.6" )
|
||||||
|
endif( )
|
||||||
|
else( )
|
||||||
|
tde_message_fatal( "libxml-2.0 are required, but not found on your system" )
|
||||||
|
endif( )
|
||||||
|
|
||||||
|
|
||||||
|
# libxslt
|
||||||
|
pkg_search_module( LIBXSLT libxslt )
|
||||||
|
if( NOT LIBXSLT_FOUND )
|
||||||
|
tde_message_fatal( "libxslt are required, but not found on your system" )
|
||||||
|
endif( )
|
||||||
|
|
||||||
|
|
||||||
|
# required stuff
|
||||||
|
find_package( Qt )
|
||||||
|
find_package( TQt )
|
||||||
|
find_package( TDE )
|
@ -0,0 +1,23 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### quantamodule (static) #####################
|
||||||
|
|
||||||
|
tde_add_library( quantamodule STATIC_PIC AUTOMOC
|
||||||
|
SOURCES qextfileinfo.cpp ksavealldialog.cpp
|
||||||
|
)
|
@ -0,0 +1,23 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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 )
|
||||||
|
add_subdirectory( utility )
|
||||||
|
add_subdirectory( dialogs )
|
||||||
|
add_subdirectory( components )
|
||||||
|
add_subdirectory( parsers )
|
||||||
|
add_subdirectory( treeviews )
|
||||||
|
add_subdirectory( messages )
|
||||||
|
add_subdirectory( plugins )
|
||||||
|
add_subdirectory( parts )
|
||||||
|
add_subdirectory( project )
|
||||||
|
add_subdirectory( src )
|
||||||
|
add_subdirectory( scripts )
|
@ -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 )
|
@ -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
|
||||||
|
)
|
@ -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 )
|
@ -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
|
||||||
|
)
|
@ -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}
|
||||||
|
)
|
@ -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}
|
||||||
|
)
|
@ -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
|
||||||
|
)
|
@ -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
|
||||||
|
)
|
@ -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
|
||||||
|
)
|
@ -0,0 +1,20 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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( doc )
|
||||||
|
add_subdirectory( dtep )
|
||||||
|
add_subdirectory( icons )
|
||||||
|
add_subdirectory( pics )
|
||||||
|
add_subdirectory( templates )
|
||||||
|
add_subdirectory( toolbars )
|
||||||
|
add_subdirectory( config )
|
||||||
|
|
||||||
|
install( FILES chars tips DESTINATION ${DATA_INSTALL_DIR}/quanta )
|
@ -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
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
plugins.rc actions.rc quantaui.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta )
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
quanta_preview_config.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR} )
|
@ -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
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
documentation.html head_bg.gif minilogo.jpg quanta.docrc aniquanta.gif
|
||||||
|
background.png bgtable.png developer.html focus.html intro.html
|
||||||
|
kdelogo2.png konq.css lines.png lines2.png minilogo.png more.png
|
||||||
|
quanta.css quantahdr.png shadow1.png tips.html webdev.png maindoc.html
|
||||||
|
template.html qcenter2.png faq.html
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/doc )
|
@ -0,0 +1,33 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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( html )
|
||||||
|
add_subdirectory( html-frameset )
|
||||||
|
add_subdirectory( html-strict )
|
||||||
|
add_subdirectory( tagxml )
|
||||||
|
add_subdirectory( php )
|
||||||
|
add_subdirectory( xhtml )
|
||||||
|
add_subdirectory( xhtml-basic )
|
||||||
|
add_subdirectory( xhtml-frameset )
|
||||||
|
add_subdirectory( xhtml-strict )
|
||||||
|
add_subdirectory( xhtml11 )
|
||||||
|
add_subdirectory( xslt )
|
||||||
|
add_subdirectory( wml-1-2 )
|
||||||
|
add_subdirectory( css )
|
||||||
|
add_subdirectory( docbook-4.2 )
|
||||||
|
add_subdirectory( schema )
|
||||||
|
add_subdirectory( cfml )
|
||||||
|
add_subdirectory( cffunct )
|
||||||
|
add_subdirectory( kde-docbook-4.1.2 )
|
||||||
|
add_subdirectory( kde-docbook-4.2 )
|
||||||
|
add_subdirectory( relaxng )
|
||||||
|
add_subdirectory( empty )
|
||||||
|
add_subdirectory( dtd )
|
@ -0,0 +1,40 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
abs.tag acos.tag acs.tag array.tag
|
||||||
|
asin.tag atn.tag authenticatedcontext.tag
|
||||||
|
authenticateduser.tag bitand.tag bitmaskclear.tag
|
||||||
|
bitmaskread.tag bitmaskset.tag bitnot.tag
|
||||||
|
bitor.tag bitshln.tag bitshrn.tag bitxor.tag
|
||||||
|
ceiling.tag chr.tag cjustify.tag compare.tag
|
||||||
|
comparenocase.tag cos.tag createobject.tag
|
||||||
|
createuuid.tag datetime.tag de.tag
|
||||||
|
decimalformat.tag decrementvalue.tag decrypt.tag
|
||||||
|
deleteclientvariable.tag description.rc
|
||||||
|
directoryexists.tag dollarformat.tag
|
||||||
|
duplicate.tag encrypt.tag evaluate.tag
|
||||||
|
exp.tag expandpath.tag fileexists.tag find.tag
|
||||||
|
fix.tag formatbasen.tag getbasetagdata.tag
|
||||||
|
getbasetaglist.tag getbasetemplatepath.tag
|
||||||
|
getclientvariableslist.tag
|
||||||
|
getcurrenttemplatepath.tag
|
||||||
|
getdirectoryfrompath.tag getexception.tag
|
||||||
|
getfilefrompath.tag getfunctionlist.tag
|
||||||
|
gethttprequestdata.tag gethttptimestring.tag
|
||||||
|
getlocale.tag getmetricdata.tag
|
||||||
|
getprofilestring.tag gettempdirectory.tag
|
||||||
|
gettempfile.tag gettemplatepath.tag
|
||||||
|
gettickcount.tag gettoken.tag hash.tag
|
||||||
|
htmlcodeformat.tag htmleditformat.tag iif.tag
|
||||||
|
incrementvalue.tag inputbasen.tag insert.tag
|
||||||
|
int.tag isarray.tag isauthenticated.tag
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/cffunct )
|
@ -0,0 +1,41 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
cfabort.tag cfapplet.tag cfapplication.tag
|
||||||
|
cfargument.tag cfassociate.tag cfauthenticate.tag
|
||||||
|
cfbreak.tag cfcache.tag cfcase.tag cfcatch.tag
|
||||||
|
cfchart.tag cfchartdata.tag cfchartseries.tag
|
||||||
|
cfcol.tag cfcollection.tag cfcomponent.tag
|
||||||
|
cfcontent.tag cfcookie.tag cfdirectory.tag
|
||||||
|
cfdump.tag cferror.tag cfexecute.tag cfexit.tag
|
||||||
|
cffile.tag cfflush.tag cfform.tag cfftp.tag
|
||||||
|
cffunction.tag cfgrid.tag cfgridcolumn.tag
|
||||||
|
cfgridrow.tag cfgridupdate.tag cfheader.tag
|
||||||
|
cfhtmlhead.tag cfhttp.tag cfhttpparam.tag
|
||||||
|
cfimport.tag cfinclude.tag cfindex.tag
|
||||||
|
cfinput.tag cfinsert.tag cfinvoke.tag
|
||||||
|
cfinvokeargument.tag cfldap.tag cflocation.tag
|
||||||
|
cflock.tag cflog.tag cflogin.tag cfloginuser.tag
|
||||||
|
cfloop.tag cfmail.tag cfmailparam.tag
|
||||||
|
cfmodule.tag cfobject.tag cfobjectcache.tag
|
||||||
|
cfoutput.tag cfparam.tag cfpop.tag
|
||||||
|
cfprocessingdirective.tag cfprocparam.tag
|
||||||
|
cfprocresult.tag cfproperty.tag cfquery.tag
|
||||||
|
cfqueryparam.tag cfregistry.tag cfreport.tag
|
||||||
|
cfsavecontent.tag cfschedule.tag cfsearch.tag
|
||||||
|
cfselect.tag cfsetting.tag cfslider.tag
|
||||||
|
cfstoredproc.tag cfswitch.tag cftable.tag
|
||||||
|
cftextinput.tag cfthrow.tag cftrace.tag
|
||||||
|
cftransaction.tag cftree.tag cftreeitem.tag
|
||||||
|
cfupdate.tag cfusion.tag cfwddx.tag cfxml.tag
|
||||||
|
description.rc ftp.tag test.cfm
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/cfml )
|
@ -0,0 +1,43 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
description.rc background.tag
|
||||||
|
border-bottom-color.tag border-bottom-style.tag
|
||||||
|
border-bottom-width.tag border-bottom.tag
|
||||||
|
border-collapse.tag border-color.tag
|
||||||
|
border-left-color.tag border-left-style.tag
|
||||||
|
border-left-width.tag border-left.tag
|
||||||
|
border-right-color.tag border-right-style.tag
|
||||||
|
border-right-width.tag border-right.tag
|
||||||
|
border-spacing.tag border-top-color.tag
|
||||||
|
border-top-style.tag border-top-width.tag
|
||||||
|
border-top.tag border.tag bottom.tag
|
||||||
|
caption-side.tag clear.tag clip.tag
|
||||||
|
color.tag content.tag counter-increment.tag
|
||||||
|
counter-reset.tag cursor.tag direction.tag
|
||||||
|
display.tag empty-cells.tag float.tag
|
||||||
|
font-size-adjust.tag font-stretch.tag
|
||||||
|
font.tag height.tag left.tag letter-spacing.tag
|
||||||
|
line-height.tag list-style.tag margin-bottom.tag
|
||||||
|
margin-left.tag margin-right.tag margin-top.tag
|
||||||
|
margin.tag marker-offset.tag max-height.tag
|
||||||
|
max-width.tag min-height.tag min-width.tag
|
||||||
|
outline.tag overflow.tag padding-bottom.tag
|
||||||
|
padding-left.tag padding-right.tag
|
||||||
|
padding-top.tag padding.tag position.tag
|
||||||
|
quotes.tag right.tag table-layout.tag
|
||||||
|
text-align.tag text-decoration.tag
|
||||||
|
text-indent.tag text-shadow.tag
|
||||||
|
text-transform.tag top.tag unicode-bidi.tag
|
||||||
|
vertical-align.tag visibility.tag white-space.tag
|
||||||
|
width.tag word-spacing.tag z-index.tag
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/css )
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
a.tag b.tag c.tag d.tag e.tag f.tag g.tag h.tag
|
||||||
|
i.tag j.tag k.tag l.tag m.tag n.tag o.tag p.tag
|
||||||
|
q.tag r.tag s.tag t.tag u.tag v.tag w.tag x.tag
|
||||||
|
y.tag common.tag description.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/docbook-4.2 )
|
@ -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
|
||||||
|
description.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/dtd )
|
@ -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
|
||||||
|
description.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/empty )
|
@ -0,0 +1,15 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
basefont.tag description.rc font.tag frame.tag
|
||||||
|
frameset.tag isindex.tag common.tag
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/html-frameset )
|
@ -0,0 +1,16 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
a.tag b.tag c.tag d.tag e.tag f.tag h.tag i.tag
|
||||||
|
k.tag l.tag m.tag n.tag o.tag p.tag q.tag s.tag
|
||||||
|
t.tag u.tag v.tag common.tag description.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/html-strict )
|
@ -0,0 +1,15 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
a.tag b.tag c.tag d.tag e.tag f.tag h.tag i.tag k.tag l.tag m.tag n.tag
|
||||||
|
o.tag p.tag q.tag s.tag t.tag u.tag v.tag common.tag description.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/html-transitional )
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
a.tag b.tag c.tag d.tag e.tag f.tag g.tag h.tag
|
||||||
|
i.tag k.tag l.tag m.tag n.tag o.tag p.tag q.tag
|
||||||
|
r.tag s.tag t.tag u.tag v.tag w.tag x.tag y.tag
|
||||||
|
common.tag description.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/kde-docbook-4.1.2 )
|
@ -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
|
||||||
|
common.tag description.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/kde-docbook-4.2 )
|
@ -0,0 +1,45 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
description.rc apache.tag apd.tag array.tag
|
||||||
|
aspell.tag bc.tag bcompiler.tag bzip2.tag
|
||||||
|
calendar.tag ccvs.tag classkit.tag classobj.tag
|
||||||
|
com.tag cpdf.tag crack.tag ctype.tag curl.tag
|
||||||
|
cybercash.tag cybermut.tag cyrus.tag datetime.tag
|
||||||
|
dba.tag dbase.tag dbm.tag dbplus.tag dbx.tag
|
||||||
|
dio.tag dir.tag dom.tag domxml.tag dotnet.tag
|
||||||
|
errorfunc.tag exec.tag exif.tag fam.tag fbsql.tag
|
||||||
|
fdf.tag filepro.tag filesystem.tag fribidi.tag
|
||||||
|
ftp.tag funchand.tag gettext.tag gmp.tag http.tag
|
||||||
|
hw.tag hwapi.tag hyperwave.tag ibase.tag icap.tag
|
||||||
|
iconv.tag id3.tag ifx.tag iisfunc.tag image.tag
|
||||||
|
imap.tag info.tag ingres-ii.tag ircg.tag java.tag
|
||||||
|
ldap.tag lzf.tag mail.tag mailparse.tag math.tag
|
||||||
|
mbstring.tag mcal.tag mcrypt.tag mcve.tag
|
||||||
|
memcache.tag mhash.tag mime_magic.tag ming.tag
|
||||||
|
misc.tag mnogosearch.tag msession.tag msql.tag
|
||||||
|
mssql.tag muscat.tag mysql.tag mysqli.tag
|
||||||
|
ncurses.tag network.tag nis.tag notes.tag
|
||||||
|
nsapi.tag objaggregation.tag oci8.tag odbc.tag
|
||||||
|
openal.tag openssl.tag oracle.tag outcontrol.tag
|
||||||
|
overload.tag ovrimos.tag parsekit.tag pcntl.tag
|
||||||
|
pcre.tag pdf.tag pfpro.tag pgsql.tag posix.tag
|
||||||
|
printer.tag pspell.tag qtdom.tag rar.tag
|
||||||
|
readline.tag recode.tag regex.tag sem.tag
|
||||||
|
sesam.tag session.tag shmop.tag simplexml.tag
|
||||||
|
snmp.tag soap.tag sockets.tag spl.tag sqlite.tag
|
||||||
|
stream.tag strings.tag swf.tag sybase.tag
|
||||||
|
tcpwrap.tag tidy.tag tokenizer.tag uodbc.tag
|
||||||
|
url.tag var.tag vpopmail.tag w32api.tag wddx.tag
|
||||||
|
xattr.tag xdiff.tag xml.tag xmlrpc.tag xsl.tag
|
||||||
|
xslt.tag yaz.tag zip.tag zlib.tag includes.tag
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/php )
|
@ -0,0 +1,21 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
anyName.tag attribute.tag choice.tag data.tag
|
||||||
|
define.tag description.rc div.tag element.tag
|
||||||
|
empty.tag except.tag externalRef.tag grammar.tag
|
||||||
|
group.tag include.tag interleave.tag list.tag
|
||||||
|
mixed.tag name.tag notAllowed.tag nsName.tag
|
||||||
|
oneOrMore.tag optional.tag param.tag
|
||||||
|
parentRef.tag ref.tag start.tag text.tag
|
||||||
|
value.tag zeroOrMore.tag
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/relaxng )
|
@ -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
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
all.tag annotation.tag any.tag anyAttribute.tag
|
||||||
|
appInfo.tag attribute.tag attributeGroup.tag
|
||||||
|
choice.tag complexContent.tag complexType.tag
|
||||||
|
description.rc documentation.tag element.tag
|
||||||
|
enumeration.tag extension.tag field.tag
|
||||||
|
fractionDigits.tag group.tag import.tag
|
||||||
|
include.tag key.tag keyref.tag length.tag
|
||||||
|
list.tag maxInclusive.tag maxLength.tag
|
||||||
|
minInclusive.tag minLength.tag notation.tag
|
||||||
|
pattern.tag redefine.tag restriction.tag
|
||||||
|
schema.tag selector.tag sequence.tag
|
||||||
|
simpleContent.tag simpleType.tag totalDigits.tag
|
||||||
|
union.tag unique.tag whiteSpace.tag
|
||||||
|
minExclusive.tag maxExclusive.tag
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/xml-schema )
|
@ -0,0 +1,15 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
childstop.tag spacer.tag attr.tag location.tag
|
||||||
|
tag.tag nonparams.tag vpl.tag description.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/tagxml )
|
@ -0,0 +1,19 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
a.tag access.tag anchor.tag br.tag card.tag
|
||||||
|
description.rc do.tag fieldset.tag go.tag
|
||||||
|
img.tag input.tag meta.tag noop.tag onevent.tag
|
||||||
|
optgroup.tag option.tag p.tag postfield.tag
|
||||||
|
pre.tag select.tag setvar.tag table.tag
|
||||||
|
template.tag timer.tag wml.tag common.tag
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/wml-1-2 )
|
@ -0,0 +1,19 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
base.tag body.tag description.rc form.tag
|
||||||
|
headings.tag input.tag link.tag ol.tag
|
||||||
|
p.tag table.tag textarea.tag tr.tag a.tag
|
||||||
|
blockquote.tag br.tag div.tag head.tag html.tag
|
||||||
|
li.tag meta.tag option.tag select.tag td.tag
|
||||||
|
th.tag ul.tag common.tag
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/xhtml-basic )
|
@ -0,0 +1,32 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
basefont.tag font.tag frame.tag frameset.tag
|
||||||
|
isindex.tag description.rc a.tag abbr.tag
|
||||||
|
acronym.tag address.tag applet.tag area.tag b.tag
|
||||||
|
base.tag bdo.tag big.tag blockquote.tag body.tag
|
||||||
|
br.tag button.tag caption.tag center.tag cite.tag
|
||||||
|
code.tag col.tag colgroup.tag dd.tag del.tag
|
||||||
|
dfn.tag dir.tag div.tag dl.tag dt.tag em.tag
|
||||||
|
fieldset.tag form.tag head.tag headings.tag
|
||||||
|
hr.tag html.tag i.tag iframe.tag img.tag
|
||||||
|
input.tag ins.tag kbd.tag label.tag legend.tag
|
||||||
|
li.tag link.tag map.tag menu.tag meta.tag
|
||||||
|
noframes.tag noscript.tag object.tag ol.tag
|
||||||
|
optgroup.tag option.tag p.tag param.tag pre.tag
|
||||||
|
q.tag s.tag samp.tag script.tag select.tag
|
||||||
|
small.tag span.tag strike.tag strong.tag
|
||||||
|
style.tag sub.tag sup.tag table.tag tbody.tag
|
||||||
|
td.tag textarea.tag tfoot.tag th.tag thead.tag
|
||||||
|
title.tag tr.tag tt.tag u.tag ul.tag var.tag
|
||||||
|
common.tag
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/xhtml-frameset )
|
@ -0,0 +1,28 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
a.tag area.tag base.tag blockquote.tag body.tag
|
||||||
|
br.tag col.tag colgroup.tag div.tag empty.tag
|
||||||
|
form.tag head.tag headings.tag hr.tag html.tag
|
||||||
|
input.tag li.tag link.tag meta.tag ol.tag
|
||||||
|
option.tag p.tag script.tag select.tag style.tag
|
||||||
|
table.tag tbody.tag td.tag textarea.tag tfoot.tag
|
||||||
|
th.tag thead.tag tr.tag ul.tag description.rc
|
||||||
|
abbr.tag acronym.tag address.tag b.tag bdo.tag
|
||||||
|
big.tag button.tag caption.tag cite.tag code.tag
|
||||||
|
dd.tag del.tag dfn.tag dl.tag dt.tag em.tag
|
||||||
|
fieldset.tag i.tag img.tag ins.tag kbd.tag
|
||||||
|
label.tag legend.tag map.tag noscript.tag
|
||||||
|
object.tag optgroup.tag param.tag pre.tag q.tag
|
||||||
|
samp.tag small.tag span.tag strong.tag sub.tag
|
||||||
|
sup.tag title.tag tt.tag var.tag common.tag
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/xhtml-strict )
|
@ -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
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
basefont.tag font.tag isindex.tag description.rc
|
||||||
|
a.tag abbr.tag acronym.tag address.tag
|
||||||
|
applet.tag area.tag b.tag base.tag bdo.tag
|
||||||
|
big.tag blockquote.tag body.tag br.tag button.tag
|
||||||
|
caption.tag center.tag cite.tag code.tag col.tag
|
||||||
|
colgroup.tag dd.tag del.tag dfn.tag dir.tag
|
||||||
|
div.tag dl.tag dt.tag em.tag fieldset.tag
|
||||||
|
form.tag head.tag headings.tag hr.tag html.tag
|
||||||
|
i.tag iframe.tag img.tag input.tag ins.tag
|
||||||
|
kbd.tag label.tag legend.tag li.tag link.tag
|
||||||
|
map.tag menu.tag meta.tag noframes.tag
|
||||||
|
noscript.tag object.tag ol.tag optgroup.tag
|
||||||
|
option.tag p.tag param.tag pre.tag q.tag s.tag
|
||||||
|
samp.tag script.tag select.tag small.tag span.tag
|
||||||
|
strike.tag strong.tag style.tag sub.tag sup.tag
|
||||||
|
table.tag tbody.tag td.tag textarea.tag tfoot.tag
|
||||||
|
th.tag thead.tag title.tag tr.tag tt.tag u.tag
|
||||||
|
ul.tag var.tag common.tag
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/xhtml )
|
@ -0,0 +1,30 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
a.tag abbr.tag acronym.tag address.tag
|
||||||
|
area.tag b.tag base.tag bdo.tag big.tag
|
||||||
|
blockquote.tag body.tag br.tag caption.tag
|
||||||
|
cite.tag code.tag col.tag colgroup.tag dd.tag
|
||||||
|
del.tag description.rc dfn.tag div.tag dl.tag
|
||||||
|
dt.tag em.tag empty.tag fieldset.tag form.tag
|
||||||
|
head.tag headings.tag hr.tag html.tag i.tag
|
||||||
|
image.tag input.tag ins.tag kbd.tag label.tag
|
||||||
|
legend.tag li.tag link.tag map.tag meta.tag
|
||||||
|
noscript.tag object.tag ol.tag optgroup.tag
|
||||||
|
option.tag p.tag param.tag pre.tag q.tag
|
||||||
|
rb.tag rbc.tag rp.tag rt.tag rtc.tag ruby.tag
|
||||||
|
samp.tag script.tag select.tag small.tag span.tag
|
||||||
|
strong.tag style.tag sub.tag sup.tag table.tag
|
||||||
|
tbody.tag td.tag textarea.tag tfoot.tag th.tag
|
||||||
|
thead.tag title.tag tr.tag tt.tag ul.tag var.tag
|
||||||
|
button.tag applet.tag common.tag
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/xhtml11 )
|
@ -0,0 +1,24 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
apply-imports.tag attribute-set.tag attribute.tag
|
||||||
|
call-template.tag choose.tag comment.tag
|
||||||
|
copy-of.tag decimal-format.tag description.rc
|
||||||
|
element.tag fallback.tag for-each.tag
|
||||||
|
if.tag import.tag key.tag message.tag
|
||||||
|
namespace-alias.tag number.tag otherwise.tag
|
||||||
|
output.tag param.tag preserve-space.tag
|
||||||
|
processing-instruction.tag sort.tag
|
||||||
|
strip-space.tag stylesheet.tag template.tag
|
||||||
|
text.tag transform.tag value-of.tag variable.tag
|
||||||
|
when.tag with-param.tag
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/dtep/xslt )
|
@ -0,0 +1,20 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
delete.png empty1x16.png java.png mini-book1.png
|
||||||
|
mini-book2.png mini-modules.png tag_br_small.png
|
||||||
|
tag_font_small.png tag_hr_small.png
|
||||||
|
empty16x16.png debug_breakpoint.png
|
||||||
|
debug_connect.png debug_disconnect.png
|
||||||
|
debug_kill.png debug_pause.png
|
||||||
|
debug_currentline.png
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbar )
|
@ -0,0 +1,70 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
ball.png check_clear.png check_grey.png
|
||||||
|
check.png css.png date.png debug_leap.png
|
||||||
|
debug_run.png debug_skip.png debug_stepinto.png
|
||||||
|
debug_stepout.png debug_stepover.png
|
||||||
|
div_center.png div_justify.png div_left.png
|
||||||
|
div_right.png font_dec.png font_inc.png form.png
|
||||||
|
frame.png ftab.png ftpclient.png lineedit.png
|
||||||
|
linepas.png output_win.png preview.png
|
||||||
|
ptab.png quick_list.png quick-screenshot.png
|
||||||
|
quick_start.png quick_table.png radio.png
|
||||||
|
replace.png reset.png select.png submit.png
|
||||||
|
button.png table_data.png table_head.png
|
||||||
|
tag_access.png tag_all.png tag_anyAttribute.png
|
||||||
|
tag_any.png tag_a.png tag_appInfo.png
|
||||||
|
tag_attributeGroup.png tag_attribute.png
|
||||||
|
tag_attr.png tag_a_url.png tag_bold.png
|
||||||
|
tag_br.png tag_caption.png tag_card.png
|
||||||
|
tag_chapter.png tag_choice.png tag_comm.png
|
||||||
|
tag_complexContent.png tag_complexType.png
|
||||||
|
tag_dd.png tag_dl.png tag_documenation.png
|
||||||
|
tag_do.png tag_dt.png tag_element.png tag_em.png
|
||||||
|
tag_example.png tag_extension.png tag_field.png
|
||||||
|
tag_font_base.png tag_font.png tag_footnote.png
|
||||||
|
tag_footnoteref.png tag_fractionDigits.png
|
||||||
|
tag_go.png tag_group.png tag_guimenuitem.png
|
||||||
|
tag_guimenu.png tag_guisubmenu.png tag_h1.png
|
||||||
|
tag_h2.png tag_h3.png tag_h4.png tag_h5.png
|
||||||
|
tag_head.png tag_hr.png tag_imagedata.png
|
||||||
|
tag_image.png tag_import.png tag_include.png
|
||||||
|
tag_informalexample.png tag_inlinemediaobject.png
|
||||||
|
tag_i.png tag_keycap.png tag_keycombo.png
|
||||||
|
tag_key.png tag_keyref.png tag_label.png
|
||||||
|
tag_link.png tag_li.png tag_listitem.png
|
||||||
|
tag_list.png tag_loc.png tag_mail.png
|
||||||
|
tag_member.png tag_menuchoice.png
|
||||||
|
tag_menu.png tag_meta.png tag_misc.png
|
||||||
|
tag_nbsp.png tag_noop.png tag_notation.png
|
||||||
|
tag_ol.png tag_onevent.png tag_para.png
|
||||||
|
tag_postfield.png tag_p.png tag_pre.png
|
||||||
|
tag_procedure.png tag_redefine.png
|
||||||
|
tag_restriction.png tag_schema.png
|
||||||
|
tag_screenshotinfo.png tag_screenshot.png
|
||||||
|
tag_sect1.png tag_sect2.png tag_sect3.png
|
||||||
|
tag_sect4.png tag_sect5.png tag_selector.png
|
||||||
|
tag_sequence.png tag_setvar.png tag_shortcut.png
|
||||||
|
tag_simpleContent.png tag_simpleType.png
|
||||||
|
tag_step.png tag_sub.png tag_substeps.png
|
||||||
|
tag_sup.png tag_table_body.png tag_table.png
|
||||||
|
tag_table_row.png tag_tag.png tag_tbody.png
|
||||||
|
tag_td.png tag_term.png tag_tgroup.png tag_th.png
|
||||||
|
tag_title.png tag_tr.png tag_ulink.png tag_ul.png
|
||||||
|
tag_union.png tag_unique.png tag_u.png
|
||||||
|
tag_variablelist.png tag_varlistentry.png
|
||||||
|
tag_varlistitem.png tag_what.png tag_wml.png
|
||||||
|
tag_xref.png textarea.png tree_win.png ttab.png
|
||||||
|
view_text.png vpl.png vpl_text.png xmlval.png
|
||||||
|
xsltproc.png tag_amp.png tag_cdata.png
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbar )
|
@ -0,0 +1,16 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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( 22x22 )
|
||||||
|
add_subdirectory( 16x16 )
|
||||||
|
|
||||||
|
tde_install_icons( quanta )
|
||||||
|
install( FILES files.png DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbar )
|
@ -0,0 +1,16 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
quantalogo.png wiznewprjweb.png wiznewprjglb.png
|
||||||
|
wiznewprjfin.png wiznewprjloc.png
|
||||||
|
quantalogo_be.png
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbar )
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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( images )
|
||||||
|
add_subdirectory( text )
|
||||||
|
add_subdirectory( documents )
|
||||||
|
add_subdirectory( binaries )
|
||||||
|
add_subdirectory( pages )
|
||||||
|
add_subdirectory( scripts )
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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( images )
|
||||||
|
add_subdirectory( others )
|
||||||
|
|
||||||
|
install( FILES dirinfo
|
||||||
|
RENAME .dirinfo
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/binaries )
|
@ -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
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( jpg )
|
||||||
|
add_subdirectory( others )
|
||||||
|
add_subdirectory( png )
|
@ -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
|
||||||
|
demo.jpg
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/binaries/images/jpg )
|
@ -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
|
||||||
|
demo.tif
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/binaries/images/others )
|
@ -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
|
||||||
|
demo.png
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/binaries/images/png )
|
@ -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
|
||||||
|
print.pdf
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/binaries/others )
|
@ -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
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( html )
|
||||||
|
add_subdirectory( others )
|
||||||
|
add_subdirectory( scripts )
|
||||||
|
|
||||||
|
install( FILES dirinfo
|
||||||
|
RENAME .dirinfo
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/documents )
|
@ -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
|
||||||
|
demo.html
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/documents/html )
|
@ -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
|
||||||
|
demo.txt
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/documents/others )
|
@ -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
|
||||||
|
demo.script
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/documents/scripts )
|
@ -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
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( jpg )
|
||||||
|
add_subdirectory( png )
|
||||||
|
add_subdirectory( others )
|
||||||
|
|
||||||
|
install( FILES dirinfo
|
||||||
|
RENAME .dirinfo
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/images )
|
@ -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
|
||||||
|
demo.jpg
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/images/jpg )
|
@ -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
|
||||||
|
demo.tif
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/images/others )
|
@ -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
|
||||||
|
demo.png
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/images/png )
|
@ -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
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( php )
|
||||||
|
add_subdirectory( html )
|
||||||
|
add_subdirectory( docbook )
|
||||||
|
|
||||||
|
install( FILES dirinfo
|
||||||
|
RENAME .dirinfo
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/pages )
|
@ -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
|
||||||
|
kde-doc-template.docbook
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/pages/docbook )
|
@ -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
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( xhtml )
|
||||||
|
add_subdirectory( html_4.0.1 )
|
||||||
|
add_subdirectory( special )
|
@ -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
|
||||||
|
basic.html
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/pages/html_4.0.1 )
|
@ -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
|
||||||
|
drag_n_drop_men.html
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/pages/special )
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
Quanta_Times.html leftMen_BB.html
|
||||||
|
rightMen_BB.html twoSideMen_BB.html
|
||||||
|
leftMen_Quanta.html rightMen_Quanta.html
|
||||||
|
twoSideMen_Quanta.html
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/pages/xhtml )
|
@ -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
|
||||||
|
demo.php
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/pages/php )
|
@ -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
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( php )
|
||||||
|
add_subdirectory( perl )
|
||||||
|
add_subdirectory( javascript )
|
||||||
|
|
||||||
|
install( FILES dirinfo
|
||||||
|
RENAME .dirinfo
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/scripts )
|
@ -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
|
||||||
|
overlib.js email_validate.js preload.js
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/scripts/javascript )
|
@ -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
|
||||||
|
demo.perl
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/scripts/perl )
|
@ -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
|
||||||
|
demo.php
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/scripts/php )
|
@ -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
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( scripts )
|
||||||
|
add_subdirectory( others )
|
||||||
|
add_subdirectory( html )
|
||||||
|
|
||||||
|
install( FILES dirinfo
|
||||||
|
RENAME .dirinfo
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/text )
|
@ -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
|
||||||
|
demo.html
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/text/html )
|
@ -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
|
||||||
|
demo.txt
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/text/others )
|
@ -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
|
||||||
|
demo.php
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/text/scripts )
|
@ -0,0 +1,24 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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( html )
|
||||||
|
add_subdirectory( xml )
|
||||||
|
add_subdirectory( wml-1-2 )
|
||||||
|
add_subdirectory( tagxml )
|
||||||
|
add_subdirectory( schema )
|
||||||
|
add_subdirectory( cfml )
|
||||||
|
add_subdirectory( kde-docbook )
|
||||||
|
add_subdirectory( docbook )
|
||||||
|
add_subdirectory( css )
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
debug.toolbar.tgz
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbars )
|
@ -0,0 +1,16 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
fonts.toolbar.tgz forms.toolbar.tgz
|
||||||
|
lists.toolbar.tgz standard.toolbar.tgz
|
||||||
|
tables.toolbar.tgz cfml.toolbar.tgz
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbars/cfml )
|
@ -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
|
||||||
|
css.toolbar.tgz
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbars/css )
|
@ -0,0 +1,15 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
xmltools.toolbar.tgz docbook_code.toolbar.tgz
|
||||||
|
docbook_ui.toolbar.tgz docbook_xml.toolbar.tgz
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbars/docbook )
|
@ -0,0 +1,15 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
forms.toolbar.tgz lists.toolbar.tgz other.toolbar.tgz
|
||||||
|
standard.toolbar.tgz tables.toolbar.tgz style.toolbar.tgz
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbars/html )
|
@ -0,0 +1,20 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
kde-docbook-admonitions.toolbar.tgz
|
||||||
|
kde-docbook-images.toolbar.tgz
|
||||||
|
kde-docbook-list.toolbar.tgz
|
||||||
|
kde-docbook-standard.toolbar.tgz
|
||||||
|
kde-docbook-tables.toolbar.tgz
|
||||||
|
kde-docbook-uielements.toolbar.tgz
|
||||||
|
kdexmltools.toolbar.tgz
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbars/kde-docbook )
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
attributes.toolbar.tgz complex.toolbar.tgz
|
||||||
|
documentation.toolbar.tgz facets.toolbar.tgz
|
||||||
|
misc.toolbar.tgz simple.toolbar.tgz
|
||||||
|
main.toolbar.tgz
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbars/schema )
|
@ -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
|
||||||
|
tagxml.toolbar.tgz
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbars/tagxml )
|
@ -0,0 +1,15 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
deck.toolbar.tgz forms.toolbar.tgz misc.toolbar.tgz
|
||||||
|
table.toolbar.tgz tasks.toolbar.tgz text.toolbar.tgz
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbars/wml-1-2 )
|
@ -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
|
||||||
|
fonts.toolbar.tgz
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbars/xml )
|
@ -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( settings )
|
||||||
|
add_subdirectory( tagdialogs )
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_SOURCE_DIR}/lib
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/utility
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/dialogs
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/src
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parsers
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### dialogs (static) ##########################
|
||||||
|
|
||||||
|
tde_add_library( dialogs STATIC_PIC AUTOMOC
|
||||||
|
SOURCES
|
||||||
|
copyto.cpp dirtydialog.ui dirtydlg.cpp
|
||||||
|
donationdialog.ui dtdselectdialog.ui
|
||||||
|
fourbuttonmessagebox.ui casewidget.ui
|
||||||
|
actionconfigdialogs.ui actionconfigdialog.cpp
|
||||||
|
filecombo.cpp specialchardialogs.ui
|
||||||
|
specialchardialog.cpp dtepeditdlgs.ui
|
||||||
|
dtepstructureeditdlgs.ui dtepeditdlg.cpp
|
||||||
|
loadentitydlgs.ui
|
||||||
|
)
|
@ -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}/quanta/utility
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parsers
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/src
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### settingsdialogs (static) ##################
|
||||||
|
|
||||||
|
tde_add_library( settingsdialogs STATIC_PIC AUTOMOC
|
||||||
|
SOURCES
|
||||||
|
parseroptionsui.ui parseroptions.cpp
|
||||||
|
previewoptionss.ui previewoptions.cpp
|
||||||
|
filemaskss.ui filemasks.cpp styleoptionss.ui
|
||||||
|
abbreviations.ui abbreviation.cpp
|
||||||
|
codetemplatedlgs.ui
|
||||||
|
)
|
@ -0,0 +1,36 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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/utility
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parsers
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/dialogs
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/src
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parts/kafka
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/components/csseditor
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### tagdialogs (static) #######################
|
||||||
|
|
||||||
|
tde_add_library( tagdialogs STATIC_PIC AUTOMOC
|
||||||
|
SOURCES
|
||||||
|
tagmisc.ui listdlg.cpp tagmaildlg.cpp
|
||||||
|
tagquicklistdlg.cpp tagquicklistdlgdata.cpp
|
||||||
|
tagdialog.cpp tagattr.cpp pictureview.cpp
|
||||||
|
tagimgdlg.cpp tagxml.cpp tagwidget.cpp
|
||||||
|
colorcombo.cpp tagimgdlgdata.cpp tagmiscdlg.cpp
|
||||||
|
tagmail.ui
|
||||||
|
)
|
@ -0,0 +1,29 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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/src
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/project
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parsers
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/utility
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### messages (static) #########################
|
||||||
|
|
||||||
|
tde_add_library( messages STATIC_PIC AUTOMOC
|
||||||
|
SOURCES
|
||||||
|
messageoutput.cpp messageitem.cpp annotationoutput.cpp
|
||||||
|
)
|
@ -0,0 +1,33 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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( dtd )
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_SOURCE_DIR}/lib
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/src
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parsers
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/utility
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/treeviews
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parts/kafka
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### parser (static) ###########################
|
||||||
|
|
||||||
|
tde_add_library( parser STATIC_PIC AUTOMOC
|
||||||
|
SOURCES
|
||||||
|
qtag.cpp node.cpp tag.cpp parser.cpp saparser.cpp
|
||||||
|
parsercommon.cpp sagroupparser.cpp
|
||||||
|
)
|
@ -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_BINARY_DIR}/quanta/dialogs
|
||||||
|
${CMAKE_SOURCE_DIR}/lib
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parsers
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/utility
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/dialogs
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${LIBXML_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### dtdparser (static) ########################
|
||||||
|
|
||||||
|
tde_add_library( dtdparser STATIC_PIC
|
||||||
|
SOURCES
|
||||||
|
dtepcreationdlg.ui dtdparser.cpp
|
||||||
|
DEPENDENCIES dialogs-static
|
||||||
|
)
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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( preview )
|
||||||
|
add_subdirectory( kafka )
|
@ -0,0 +1,44 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2010-2011 Serghei Amelian
|
||||||
|
# serghei (DOT) amelian (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
# FIXME KDE_CXXFLAGS = $(USE_EXCEPTIONS)
|
||||||
|
|
||||||
|
add_subdirectory( pics )
|
||||||
|
|
||||||
|
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
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/treeviews
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data ################################
|
||||||
|
|
||||||
|
install( FILES entities DESTINATION ${DATA_INSTALL_DIR}/kafkapart )
|
||||||
|
|
||||||
|
|
||||||
|
##### kafkalibrary (static) #####################
|
||||||
|
|
||||||
|
tde_add_library( kafkalibrary STATIC_PIC AUTOMOC
|
||||||
|
SOURCES
|
||||||
|
htmlenhancer.cpp domtreeview.cpp kafkacommon.cpp
|
||||||
|
kafkahtmlpart.cpp nodeproperties.cpp
|
||||||
|
wkafkapart.cpp undoredo.cpp kafkasyncoptionsui.ui
|
||||||
|
htmldocumentpropertiesui.ui kafkasyncoptions.cpp
|
||||||
|
htmldocumentproperties.cpp cursors.cpp
|
||||||
|
kafkadragobject.cpp
|
||||||
|
)
|
@ -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
|
||||||
|
php.png comment.png
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kafkapart/pics )
|
@ -0,0 +1,24 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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/utility
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### preview (static) ##########################
|
||||||
|
|
||||||
|
tde_add_library( preview STATIC_PIC AUTOMOC
|
||||||
|
SOURCES whtmlpart.cpp
|
||||||
|
)
|
@ -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}/quanta/src
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/project
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parsers
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/utility
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/messages
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### plugins (static) ##########################
|
||||||
|
|
||||||
|
tde_add_library( plugins STATIC_PIC AUTOMOC
|
||||||
|
SOURCES
|
||||||
|
quantaplugininterface.cpp quantaplugineditor.cpp
|
||||||
|
quantapluginconfig.cpp quantaplugin.cpp plugineditor.ui
|
||||||
|
pluginconfig.ui
|
||||||
|
)
|
@ -0,0 +1,47 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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_BINARY_DIR}/quanta/dialogs
|
||||||
|
${CMAKE_SOURCE_DIR}/lib
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/src
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parsers
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/utility
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/treeviews
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/dialogs
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/dialogs/tagdialogs
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/components/debugger
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/components/debugger/interfaces
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### project (static) ##########################
|
||||||
|
|
||||||
|
tde_add_library( project STATIC_PIC AUTOMOC
|
||||||
|
SOURCES
|
||||||
|
projectoptions.ui projectnewgenerals.ui
|
||||||
|
projectnewgeneral.cpp projectnewlocals.ui
|
||||||
|
projectnewlocal.cpp rescanprj.cpp rescanprjdir.ui
|
||||||
|
projectnewfinals.ui projectuploads.ui
|
||||||
|
projectnewfinal.cpp projectupload.cpp
|
||||||
|
project.cpp projectnewwebs.ui projectnewweb.cpp
|
||||||
|
uploadprofiledlgs.ui projectlist.cpp
|
||||||
|
membereditdlgs.ui teammembersdlgs.ui
|
||||||
|
teammembersdlg.cpp membereditdlg.cpp
|
||||||
|
subprojecteditdlgs.ui eventconfigurationdlgs.ui
|
||||||
|
eventeditordlgs.ui eventconfigurationdlg.cpp
|
||||||
|
eventeditordlg.cpp uploadprofiles.cpp
|
||||||
|
uploadprofilespage.ui projectprivate.cpp
|
||||||
|
DEPENDENCIES dialogs-static
|
||||||
|
)
|
@ -0,0 +1,29 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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
|
||||||
|
scriptinfo.kmdr.info dwt.pl dwt.kmdr.info
|
||||||
|
tidy.kmdr.info checkxml.kmdr.info
|
||||||
|
meinproc.kmdr.info xmlval.kmdr.info
|
||||||
|
xsltproc.kmdr.info htmlquickstart.kmdr.info
|
||||||
|
TemplateMagic.pl TemplateMagic.pl.info
|
||||||
|
info.css externalpreview.sh info.xsl
|
||||||
|
externalpreview.sh.info dwt.pl.info
|
||||||
|
gubed_install.kmdr.info
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/scripts )
|
||||||
|
|
||||||
|
install( PROGRAMS
|
||||||
|
scriptinfo.kmdr dwt.kmdr tidy.kmdr checkxml.kmdr
|
||||||
|
meinproc.kmdr xmlval.kmdr xsltproc.kmdr
|
||||||
|
htmlquickstart.kmdr gubed_install.kmdr
|
||||||
|
listwizard.kmdr picturewizard.kmdr
|
||||||
|
tablewizard.kmdr docbook_table.kmdr
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/quanta/scripts )
|
@ -0,0 +1,78 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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_BINARY_DIR}
|
||||||
|
${CMAKE_BINARY_DIR}/quanta/dialogs
|
||||||
|
${CMAKE_BINARY_DIR}/quanta/dialogs/settings
|
||||||
|
${CMAKE_BINARY_DIR}/quanta/dialogs/tagdialogs
|
||||||
|
${CMAKE_BINARY_DIR}/quanta/parts/kafka
|
||||||
|
${CMAKE_BINARY_DIR}/quanta/components/tableeditor
|
||||||
|
${CMAKE_BINARY_DIR}/quanta/components/csseditor
|
||||||
|
${CMAKE_BINARY_DIR}/quanta/components/framewizard
|
||||||
|
${CMAKE_SOURCE_DIR}/lib
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/src
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/project
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parsers
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parsers/dtd
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/utility
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parts/kafka
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parts/preview
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/components/debugger
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/components/tableeditor
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/components/csseditor
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/components/framewizard
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/messages
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/treeviews
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/plugins
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/dialogs
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/dialogs/settings
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/dialogs/tagdialogs
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data ################################
|
||||||
|
|
||||||
|
install( FILES quanta.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
|
||||||
|
install( FILES x-webprj.desktop DESTINATION ${MIME_INSTALL_DIR}/application )
|
||||||
|
|
||||||
|
|
||||||
|
##### quanta (executable) #######################
|
||||||
|
|
||||||
|
set_source_files_properties( kqapp.cpp PROPERTIES COMPILE_FLAGS -DPREFIX=\\"${CMAKE_INSTALL_PREFIX}\\" )
|
||||||
|
|
||||||
|
tde_add_executable( quanta AUTOMOC
|
||||||
|
SOURCES
|
||||||
|
quanta_init.cpp quantaview.cpp quantadoc.cpp
|
||||||
|
main.cpp document.cpp kqapp.cpp quanta.cpp
|
||||||
|
dcopwindowmanagerif.skel dcopsettingsif.skel
|
||||||
|
dcopquantaif.skel dcopsettings.cpp dtds.cpp
|
||||||
|
dcopquanta.cpp viewmanager.cpp
|
||||||
|
LINK
|
||||||
|
project-static plugins-static parser-static
|
||||||
|
dtdparser-static treeviews-static dialogs-static
|
||||||
|
debuggermanager-static tagdialogs-static
|
||||||
|
settingsdialogs-static messages-static
|
||||||
|
framewizard-static csseditor-static
|
||||||
|
tableeditor-static preview-static
|
||||||
|
utility-static quantamodule-static
|
||||||
|
kafkalibrary-static kmdi-shared khtml-shared
|
||||||
|
knewstuff-shared kabc-shared ktexteditor-shared
|
||||||
|
${LIBXML_LIBRARIES} ${LIBXSLT_LIBRARIES}
|
||||||
|
DESTINATION ${BIN_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,47 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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_BINARY_DIR}/quanta/dialogs/tagdialogs
|
||||||
|
${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/dialogs
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/dialogs/tagdialogs
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/messages
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parts/kafka
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/components/csseditor
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/plugins
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${LIBXML_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### treeviews (static) ########################
|
||||||
|
|
||||||
|
tde_add_library( treeviews STATIC_PIC AUTOMOC
|
||||||
|
SOURCES
|
||||||
|
uploadtreeview.cpp uploadtreefolder.cpp
|
||||||
|
uploadtreefile.cpp fileinfodlg.ui
|
||||||
|
quantapropertiespage.ui newtemplatedirdlg.cpp
|
||||||
|
templatedirform.ui templatestreeview.cpp
|
||||||
|
projecttreeview.cpp structtreeview.cpp
|
||||||
|
doctreeview.cpp docitem.cpp docfolder.cpp
|
||||||
|
structtreetag.cpp filestreeview.cpp
|
||||||
|
tagattributetree.cpp tagattributeitems.cpp
|
||||||
|
scripttreeview.cpp basetreeview.cpp
|
||||||
|
servertreeview.cpp
|
||||||
|
DEPENDENCIES dialogs-static
|
||||||
|
)
|
@ -0,0 +1,36 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (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/parsers
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/src
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/dialogs/tagdialogs
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/utility
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/messages
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/parts/kafka
|
||||||
|
${CMAKE_SOURCE_DIR}/quanta/project
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### utility (static) ##########################
|
||||||
|
|
||||||
|
tde_add_library( utility STATIC_PIC AUTOMOC
|
||||||
|
SOURCES
|
||||||
|
quantacommon.cpp tagaction.cpp
|
||||||
|
toolbartabwidget.cpp toolbarxmlgui.cpp
|
||||||
|
newstuff.cpp quantanetaccess.cpp qpevents.cpp
|
||||||
|
quantabookmarks.cpp tagactionmanager.cpp
|
||||||
|
tagactionset.cpp
|
||||||
|
)
|
Loading…
Reference in new issue