CMakeLists.txt revision 20e2b77b5ec3e16afda325101a664b8136d7fb62
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeSET(INKSCAPE_SRC)
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike# A macro to replace slashes and spaces in a string with underscores
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeMACRO(SANITIZE_PATH _string_var)
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike STRING(REGEX REPLACE "[\\/ ]+" "_" ${_string_var} ${${_string_var}})
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeENDMACRO(SANITIZE_PATH _string_var)
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike# A macro to prepend a given string onto the beginning of each string in a list
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeMACRO(PREPEND _list _str)
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike SET(_temp_list ${${_list}})
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike SET(${_list})
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike FOREACH(x ${_temp_list})
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike SET(${_list} ${${_list}} ${_str}${x})
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike ENDFOREACH(x)
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeENDMACRO(PREPEND _list _str)
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike# All folder with CMakeLists.txt files (excluding internal libraries)
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeSET(srcfolders
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikealgorithms
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeapi
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikebind
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdebug
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdialogs
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikedisplay
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikedom
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikedom/io
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikedom/odf
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikedom/util
3d5da1134d672e95dd2c66c2aa359d48b4e7db51johanengelen#dom/work
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeextension
3d5da1134d672e95dd2c66c2aa359d48b4e7db51johanengelen#extension/dxf2svg
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeextension/implementation
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeextension/internal
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeextension/param
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikegraphlayout
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikehelper
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeinkjar
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeio
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikejabber_whiteboard
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikejabber_whiteboard/dialog
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikelive_effects
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikelive_effects/parameter
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpedro
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeremoveoverlap
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikesvg
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspiketrace
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspiketrace/potrace
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspiketraits
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeui/cache
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeui
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeui/dialog
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeui/view
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeui/widget
3d5da1134d672e95dd2c66c2aa359d48b4e7db51johanengelen#utest
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeutil
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikewidgets
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikexml
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike)
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike# 1) include each list file
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike# 2) grab the variable inside
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike# 3) prepend the full relative path to each file in list
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike# 4) append the list to INKSCAPE_SRC
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeFOREACH(dirlist ${srcfolders})
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike SET(_temp_dirlist "${dirlist}")
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike MESSAGE(STATUS "Processing ${CMAKE_CURRENT_SOURCE_DIR}/${dirlist}/CMakeLists.txt")
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike INCLUDE(${CMAKE_CURRENT_SOURCE_DIR}/${dirlist}/CMakeLists.txt)
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike SANITIZE_PATH(dirlist)
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike PREPEND(${dirlist}_SRC "${_temp_dirlist}/")
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike SET(INKSCAPE_SRC ${INKSCAPE_SRC} ${${dirlist}_SRC})
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeENDFOREACH(dirlist)
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike# All directories containing lists files that describe building internal libraries
d89841792f96d922001765f5ec7e84fe0ab02539verbalshadowSET(libfolders
d89841792f96d922001765f5ec7e84fe0ab02539verbalshadow2geom
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeapplication
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadow#dialogs
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikelibavoid
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikelibcola
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikelibcroco
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikelibgdl
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikelibnr
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikelibnrtype
ccaa842a0dc9cbeb8214cf55f3b454713f084477verbalshadowlibvpsc
ccaa842a0dc9cbeb8214cf55f3b454713f084477verbalshadowlivarot
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike)
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeFOREACH(dirlist ${libfolders})
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike ADD_SUBDIRECTORY(${dirlist})
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspikeENDFOREACH(dirlist)
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike
ff062a2768af33d794327e053abbb40f548545b8johanengelenIF(WIN32)
ff062a2768af33d794327e053abbb40f548545b8johanengelenSET(ONLY_WIN
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowregistrytool.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowregistrytool.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadow#deptool.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowwinmain.cpp
dc44e0049e0f4a5692de2d5c83524ef91449912djohanengelen)
ff062a2768af33d794327e053abbb40f548545b8johanengelenELSEIF(WIN32)
ff062a2768af33d794327e053abbb40f548545b8johanengelenSET(ONLY_WIN)
ff062a2768af33d794327e053abbb40f548545b8johanengelenENDIF(WIN32)
3c147b1dc203f9815cb45e24add22478e936d1e8verbalshadow
ff062a2768af33d794327e053abbb40f548545b8johanengelenSET(INKSCAPE_SRC
2cdfe79be9449f74ac43a83b6ae7fb62f45c484bacspike${INKSCAPE_SRC}
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowapprox-equal.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowarc-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowarc-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowattributes.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowattributes.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowattributes-test.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowaxis-manip.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowaxis-manip.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowbad-uri-exception.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowbox3d-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowbox3d-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowbox3d.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowbox3d.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowbox3d-side.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowbox3d-side.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowbrokenimage.xpm
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowcolor.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowcolor.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowcolor-profile.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowcolor-profile-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowcolor-profile.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowcolor-profile-test.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowcolor-rgba.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowcomposite-undo-stack-observer.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowcomposite-undo-stack-observer.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowconditions.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowconditions.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowconn-avoid-ref.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowconn-avoid-ref.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowconnection-pool.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowconnector-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowconnector-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowconsole-output-undo-observer.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowconsole-output-undo-observer.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowcontext-fns.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowcontext-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdecimal-round.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdeptool.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdesktop-affine.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdesktop-affine.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdesktop.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdesktop-events.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdesktop-events.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdesktop.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdesktop-handles.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdesktop-handles.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdesktop-style.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdesktop-style.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdevice-manager.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdevice-manager.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdir-util.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdir-util.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdir-util-test.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdocument.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdocument.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdocument-private.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdocument-subset.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdocument-subset.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdocument-undo.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdoxygen-main.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdraw-anchor.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdraw-anchor.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdraw-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdraw-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdropper-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdropper-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdyna-draw-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowdyna-draw-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowege-adjustment-action.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowege-adjustment-action.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowege-color-prof-tracker.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowege-color-prof-tracker.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowege-output-action.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowege-output-action.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowege-select-one-action.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowege-select-one-action.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowenums.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadoweraser-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadoweraser-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowevent-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowevent-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowevent.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowevent-log.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowevent-log.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowextension
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowextract-uri.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowextract-uri.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowextract-uri-test.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowfile.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowfile.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowfill-or-stroke.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowfilter-chemistry.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowfilter-chemistry.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowfilter-enums.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowfilter-enums.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowfixes.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowflood-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowflood-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowfontsize-expansion.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowfontsize-expansion.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowforward.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgc-alloc.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgc-anchored.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgc-anchored.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgc-core.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgc.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgc-finalized.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgc-finalized.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgc-managed.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgc-soft-ptr.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgradient-chemistry.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgradient-chemistry.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgradient-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgradient-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgradient-drag.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowgradient-drag.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowguide-snapper.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowguide-snapper.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowhelp.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowhelper-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowhelp.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowicon-size.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowige-mac-menu.c
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowige-mac-menu.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowink-action.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowink-action.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowinkscape.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowinkscape.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowinkscape-private.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowinkscape.rc
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowinkscape-stock.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowinkscape-stock.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowinkscape_version.h.mingw
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowinterface.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowinterface.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowisinf.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowisnan.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowisnormal.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowjabber_whiteboard
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowknot.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowknot-enums.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowknot.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowknotholder.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowknot-holder-entity.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowknotholder.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowlayer-fns.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowlayer-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowlayer-manager.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowlayer-manager.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowline-geometry.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowline-geometry.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowline-snapper.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowline-snapper.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmacros.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmain-cmdlineact.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmain-cmdlineact.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmain.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmarker.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmarker.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmedia.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmedia.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmemeq.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmenus-skeleton.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmessage-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmessage-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmessage.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmessage-stack.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmessage-stack.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmod360.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmod360.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmod360-test.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowmodifier-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowMultiPrinter.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadownode-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadownode-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadownodepath.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadownodepath.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadownumber-opt-number.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowobject-edit.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowobject-edit.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowobject-hierarchy.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowobject-hierarchy.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowobject-snapper.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowobject-snapper.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpath-chemistry.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpath-chemistry.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpath-prefix.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpencil-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpencil-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpen-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpen-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpersp3d.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpersp3d.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpersp3d-reference.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpersp3d-reference.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowperspective-line.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowperspective-line.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowplugin.def
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpreferences.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpreferences.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowpreferences-skeleton.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowprefix.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowprefix.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowprefs-utils.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowprefs-utils.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowprint.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowprint.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowprofile-manager.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowprofile-manager.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowproj_pt.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowproj_pt.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowPylogFormatter.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowrect-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowrect-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowremove-last.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowrequire-config.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowround.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowround-test.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowrubberband.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowrubberband.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsatisfied-guide-cns.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsatisfied-guide-cns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowselcue.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowselcue.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowselect-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowselect-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowselection-chemistry.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowselection-chemistry.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowselection.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowselection-describer.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowselection-describer.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowselection.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowselfname.tpl
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowseltrans.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowseltrans.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowseltrans-handles.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowseltrans-handles.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowshape-editor.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowshape-editor.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowshortcuts.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowshortcuts.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsnap.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsnap.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsnapped-line.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsnapped-line.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsnapped-point.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsnapped-point.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsnapper.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsnapper.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-anchor.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-anchor.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-animation.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-animation.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-clippath.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-clippath.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-conn-end.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-conn-end.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-conn-end-pair.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-conn-end-pair.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-cursor.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-cursor.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-defs.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-defs.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-ellipse.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-ellipse.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feblend.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feblend-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feblend.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fecolormatrix.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fecolormatrix-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fecolormatrix.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fecomponenttransfer.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fecomponenttransfer-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fecomponenttransfer-funcnode.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fecomponenttransfer-funcnode.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fecomponenttransfer.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fecomposite.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fecomposite-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fecomposite.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feconvolvematrix.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feconvolvematrix-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feconvolvematrix.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fediffuselighting.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fediffuselighting-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fediffuselighting.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fedisplacementmap.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fedisplacementmap-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fedisplacementmap.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fedistantlight.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fedistantlight.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feflood.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feflood-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feflood.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feimage.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feimage-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feimage.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-femerge.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-femerge-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-femerge.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-femergenode.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-femergenode.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-femorphology.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-femorphology-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-femorphology.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feoffset.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feoffset-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feoffset.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fepointlight.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fepointlight.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fespecularlighting.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fespecularlighting-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fespecularlighting.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fespotlight.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fespotlight.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fetile.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fetile-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-fetile.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feturbulence.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feturbulence-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-feturbulence.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-filter.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-filter-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-filter.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-filter-primitive.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-filter-primitive.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-filter-reference.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-filter-reference.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-filter-units.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-flowdiv.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-flowdiv.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-flowregion.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-flowregion.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-flowtext.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-flowtext.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-font.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-font.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-gaussian-blur.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-gaussian-blur-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-gaussian-blur.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-glyph.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-glyph.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-gradient.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-gradient-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-gradient.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-gradient-reference.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-gradient-reference.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-gradient-spread.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-gradient-test.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-gradient-units.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-gradient-vector.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-guide-attachment.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-guide-constraint.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-guide.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-guide.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-image.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-image.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowspiral-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowspiral-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-item.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-item-group.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-item-group.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-item.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-item-notify-moveto.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-item-notify-moveto.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-item-rm-unsatisfied-cns.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-item-rm-unsatisfied-cns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-item-transform.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-item-transform.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-item-update-cns.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-item-update-cns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-linear-gradient-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-linear-gradient.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-line.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-line.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsplivarot.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsplivarot.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-lpe-item.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-lpe-item.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-marker-loc.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-mask.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-mask.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-metadata.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-metadata.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-metric.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-metrics.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-metrics.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-missing-glyph.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-missing-glyph.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-namedview.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-namedview.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-object.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-object-group.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-object-group.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-object.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-object-repr.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-object-repr.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-offset.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-offset.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-paint-server.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-paint-server.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-path.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-path.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-pattern.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-pattern.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-polygon.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-polygon.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-polyline.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-polyline.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-radial-gradient-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-radial-gradient.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-rect.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-rect.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-root.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-root.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-shape.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-shape.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-skeleton.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-skeleton.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-spiral.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-spiral.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-star.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-star.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-stop-fns.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-stop.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-string.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-string.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-style-elem.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-style-elem.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-style-elem-test.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-switch.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-switch.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-symbol.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-symbol.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-text.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-text.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-textpath.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-tref.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-tref.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-tref-reference.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-tref-reference.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-tspan.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-tspan.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-use.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-use.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-use-reference.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsp-use-reference.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstar-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstar-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstreams-gzip.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstreams-gzip.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstreams-handles.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstreams-handles.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstreams-jar.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstreams-jar.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstreams-zlib.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstreams-zlib.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstreq.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstrneq.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstyle.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstyle.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstyle-test.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowstyle-test.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsvg-profile.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsvg-view.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsvg-view.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsvg-view-widget.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsvg-view-widget.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowsyseq.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtest-helpers.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtext-chemistry.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtext-chemistry.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtext-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtext-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtext-editing.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtext-editing.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtext-tag-attributes.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtools-switch.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtools-switch.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtransf_mat_3x4.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtransf_mat_3x4.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowTRPIFormatter.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtweak-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowtweak-context.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowundo-stack-observer.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowunit-constants.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowuri.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowuri.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowuri-references.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowuri-references.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowvanishing-point.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowvanishing-point.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowverbs.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowverbs.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowverbs-test.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowversion.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowversion.h
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowzoom-context.cpp
f79096fa559ff21d316e9f2561d982ba25b70986verbalshadowzoom-context.h
fb48f2d077b22740e62995c9fdb2cbd3251d153dverbalshadow${ONLY_WIN}
ff062a2768af33d794327e053abbb40f548545b8johanengelen)
ff062a2768af33d794327e053abbb40f548545b8johanengelen
ff062a2768af33d794327e053abbb40f548545b8johanengelen# make executable for INKSCAPE
ff062a2768af33d794327e053abbb40f548545b8johanengelenADD_EXECUTABLE(inkscape ${INKSCAPE_SRC})
ff062a2768af33d794327e053abbb40f548545b8johanengelenTARGET_LINK_LIBRARIES(inkscape
ccaa842a0dc9cbeb8214cf55f3b454713f084477verbalshadow "${INKSCAPE_LINK_FLAGS}" 2geom avoid cola croco gdl nr nrtype vpsc livarot
d9193e62c7b56f295e16cf2212401cff13ad254everbalshadow)
d9193e62c7b56f295e16cf2212401cff13ad254everbalshadow
d9193e62c7b56f295e16cf2212401cff13ad254everbalshadow# make executable for INKVIEW
20e2b77b5ec3e16afda325101a664b8136d7fb62verbalshadow#ADD_EXECUTABLE(inkview inkview.cpp)
20e2b77b5ec3e16afda325101a664b8136d7fb62verbalshadow#TARGET_LINK_LIBRARIES(inkview
20e2b77b5ec3e16afda325101a664b8136d7fb62verbalshadow# "${INKSCAPE_LINK_FLAGS}" 2geom avoid cola croco gdl nr nrtype vpsc livarot
20e2b77b5ec3e16afda325101a664b8136d7fb62verbalshadow#)
fb48f2d077b22740e62995c9fdb2cbd3251d153dverbalshadow