aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorpizzamig <pizzamig@FreeBSD.org>2017-10-27 18:15:27 +0800
committerpizzamig <pizzamig@FreeBSD.org>2017-10-27 18:15:27 +0800
commit7261d4815f162ba58688a56b35ff3c62cf769f56 (patch)
treec3f1256da1efa786d2aae5aee69ea64e38300aa8 /devel
parentdf877089812c465d6ee18c9864401de01fbb27a1 (diff)
downloadfreebsd-ports-gnome-7261d4815f162ba58688a56b35ff3c62cf769f56.tar.gz
freebsd-ports-gnome-7261d4815f162ba58688a56b35ff3c62cf769f56.tar.zst
freebsd-ports-gnome-7261d4815f162ba58688a56b35ff3c62cf769f56.zip
devel/codeblocks-devel: new port
PR: 221703 Submitted by: lbartoletti@tuxfamily.org Approved by: olivier (mentor) Differential Revision: https://reviews.freebsd.org/D12806
Diffstat (limited to 'devel')
-rw-r--r--devel/Makefile1
-rw-r--r--devel/codeblocks-devel/Makefile63
-rw-r--r--devel/codeblocks-devel/distinfo3
-rw-r--r--devel/codeblocks-devel/files/patch-revision.m46
-rw-r--r--devel/codeblocks-devel/pkg-descr9
-rw-r--r--devel/codeblocks-devel/pkg-plist1706
6 files changed, 1788 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 8bf0fc396e16..9f4b0296c999 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -329,6 +329,7 @@
SUBDIR += cobf
SUBDIR += coccinelle
SUBDIR += codeblocks
+ SUBDIR += codeblocks-devel
SUBDIR += codequery
SUBDIR += codesearch-py
SUBDIR += codeville
diff --git a/devel/codeblocks-devel/Makefile b/devel/codeblocks-devel/Makefile
new file mode 100644
index 000000000000..a5fbda2f0d71
--- /dev/null
+++ b/devel/codeblocks-devel/Makefile
@@ -0,0 +1,63 @@
+# Created by: Loïc Bartoletti <lbartoletti@tuxfamily.org>
+# $FreeBSD$
+
+PORTNAME= codeblocks
+PORTVERSION= 17.07
+CATEGORIES= devel
+MASTER_SITES= http://download.tuxfamily.org/bartcoding/FreeBSD/ \
+ ${MASTER_SITE_LOCAL}
+PKGNAMESUFFIX= -devel
+DISTNAME= ${PORTNAME}-${PORTVERSION}-${SVN_REV}
+
+MAINTAINER= lbartoletti@tuxfamily.org
+COMMENT= Open source, cross-platform, free C/C++ IDE
+
+LICENSE= GPLv3 LGPL3
+LICENSE_COMB= multi
+
+BUILD_DEPENDS= zip:archivers/zip
+LIB_DEPENDS= libboost_system.so:devel/boost-libs \
+ libfontconfig.so:x11-fonts/fontconfig \
+ libfreetype.so:print/freetype2 \
+ libhunspell-1.6.so:textproc/hunspell
+
+USES= autoreconf compiler desktop-file-utils fam:gamin localbase \
+ gettext-runtime libtool pathfix pkgconfig shared-mime-info
+USE_WX= 2.8
+USE_GNOME= gtk20 cairo
+USE_XORG= x11
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS= --with-wx-config=${WX_CONFIG} --with-contrib-plugins=all \
+ --disable-pch
+PKG_CONFIG_LIBDIR= ${LOCALBASE}/libdata/pkgconfig
+INSTALLS_ICONS= yes
+INSTALL_TARGET= install-strip
+USE_LDCONFIG= yes
+
+FETCH_DEPENDS+= svn:devel/subversion
+SVN_REV= 11112
+SVNROOT_URI= svn://svn.code.sf.net/p/codeblocks/code/trunk
+
+.include <bsd.port.pre.mk>
+
+.if ${CHOSEN_COMPILER_TYPE} == clang
+USE_CXXSTD= c++11
+. if ${COMPILER_VERSION} >= 35
+CXXFLAGS+= -Wno-undefined-bool-conversion
+. endif
+.endif
+
+.if defined(MAINTAINER_MODE)
+do-fetch:
+ ${MKDIR} ${WRKDIR}
+ svn export -r ${SVN_REV} ${SVNROOT_URI} ${WRKSRC}
+ cd ${WRKDIR}; tar cvfz ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
+ ${CHMOD} ugo+r ${DISTDIR}/${DISTNAME}.tar.gz
+ scp -p ${DISTDIR}/${DISTNAME}.tar.bz2 \
+ freefall.freebsd.org:public_distfiles/
+.endif # defined(MAINTAINER_MODE)
+
+post-extract:
+ ${TOUCH} ${WRKSRC}/revision.m4
+
+.include <bsd.port.post.mk>
diff --git a/devel/codeblocks-devel/distinfo b/devel/codeblocks-devel/distinfo
new file mode 100644
index 000000000000..05c143e7ea48
--- /dev/null
+++ b/devel/codeblocks-devel/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1502001608
+SHA256 (codeblocks-17.07-11112.tar.gz) = 3cbdc23f9418e2eb45268840727167547cdc7261f498cc72f1087dbdeda8d0ef
+SIZE (codeblocks-17.07-11112.tar.gz) = 20409815
diff --git a/devel/codeblocks-devel/files/patch-revision.m4 b/devel/codeblocks-devel/files/patch-revision.m4
new file mode 100644
index 000000000000..2c43d61bbd4f
--- /dev/null
+++ b/devel/codeblocks-devel/files/patch-revision.m4
@@ -0,0 +1,6 @@
+--- revision.m4.orig 2017-08-06 08:11:38 UTC
++++ revision.m4
+@@ -0,0 +1,3 @@
++m4_define([SVN_REV], 0)
++m4_define([SVN_REVISION], trunk-r0)
++m4_define([SVN_DATE], )
diff --git a/devel/codeblocks-devel/pkg-descr b/devel/codeblocks-devel/pkg-descr
new file mode 100644
index 000000000000..5ff5694faa64
--- /dev/null
+++ b/devel/codeblocks-devel/pkg-descr
@@ -0,0 +1,9 @@
+Code::Blocks is an open source, cross-platform and free C/C++ IDE.
+It is build using the wxWidgets GUI library.
+
+The WEB site states:
+ "Code::Blocks is a free C++ IDE built specifically to meet
+ the most demanding needs of its users. It was designed, right
+ from the start, to be extensible and configurable."
+
+WWW: http://www.codeblocks.org/
diff --git a/devel/codeblocks-devel/pkg-plist b/devel/codeblocks-devel/pkg-plist
new file mode 100644
index 000000000000..f3111bb432aa
--- /dev/null
+++ b/devel/codeblocks-devel/pkg-plist
@@ -0,0 +1,1706 @@
+bin/cb_console_runner
+bin/cb_share_config
+bin/codeblocks
+include/codeblocks/Alignment.h
+include/codeblocks/Assertions.h
+include/codeblocks/Attributes.h
+include/codeblocks/CharDistribution.h
+include/codeblocks/Compiler.h
+include/codeblocks/ErrorList.h
+include/codeblocks/JpCntx.h
+include/codeblocks/Likely.h
+include/codeblocks/NullPtr.h
+include/codeblocks/TypedEnum.h
+include/codeblocks/Types.h
+include/codeblocks/Util.h
+include/codeblocks/annoyingdialog.h
+include/codeblocks/autodetectcompilers.h
+include/codeblocks/backgroundthread.h
+include/codeblocks/base64.h
+include/codeblocks/blockallocated.h
+include/codeblocks/cbauibook.h
+include/codeblocks/cbcolourmanager.h
+include/codeblocks/cbdebugger_interfaces.h
+include/codeblocks/cbeditor.h
+include/codeblocks/cbeditorprintout.h
+include/codeblocks/cbexception.h
+include/codeblocks/cbfunctor.h
+include/codeblocks/cbplugin.h
+include/codeblocks/cbproject.h
+include/codeblocks/cbstatusbar.h
+include/codeblocks/cbstyledtextctrl.h
+include/codeblocks/cbthreadedtask.h
+include/codeblocks/cbthreadpool.h
+include/codeblocks/cbtool.h
+include/codeblocks/cbtreectrl.h
+include/codeblocks/cbworkspace.h
+include/codeblocks/ccmanager.h
+include/codeblocks/compileoptionsbase.h
+include/codeblocks/compiler.h
+include/codeblocks/compilercommandgenerator.h
+include/codeblocks/compilerfactory.h
+include/codeblocks/compileroptions.h
+include/codeblocks/compiletargetbase.h
+include/codeblocks/configmanager.h
+include/codeblocks/configurationpanel.h
+include/codeblocks/configuretoolsdlg.h
+include/codeblocks/confirmreplacedlg.h
+include/codeblocks/crc32.h
+include/codeblocks/debuggermanager.h
+include/codeblocks/editarrayfiledlg.h
+include/codeblocks/editarrayorderdlg.h
+include/codeblocks/editarraystringdlg.h
+include/codeblocks/editor_hooks.h
+include/codeblocks/editorbase.h
+include/codeblocks/editorcolourset.h
+include/codeblocks/editorlexerloader.h
+include/codeblocks/editormanager.h
+include/codeblocks/editpairdlg.h
+include/codeblocks/editpathdlg.h
+include/codeblocks/edittooldlg.h
+include/codeblocks/encodingdetector.h
+include/codeblocks/externaldepsdlg.h
+include/codeblocks/filefilters.h
+include/codeblocks/filegroupsandmasks.h
+include/codeblocks/filemanager.h
+include/codeblocks/findreplacebase.h
+include/codeblocks/findreplacedlg.h
+include/codeblocks/genericmultilinenotesdlg.h
+include/codeblocks/globals.h
+include/codeblocks/ibaseloader.h
+include/codeblocks/ibaseworkspaceloader.h
+include/codeblocks/id.h
+include/codeblocks/importers_globals.h
+include/codeblocks/incremental_select_helper.h
+include/codeblocks/infowindow.h
+include/codeblocks/licenses.h
+include/codeblocks/logger.h
+include/codeblocks/loggers.h
+include/codeblocks/logmanager.h
+include/codeblocks/macrosmanager.h
+include/codeblocks/manager.h
+include/codeblocks/menuitemsmanager.h
+include/codeblocks/misctreeitemdata.h
+include/codeblocks/multiselectdlg.h
+include/codeblocks/newfromtemplatedlg.h
+include/codeblocks/nsBig5Prober.h
+include/codeblocks/nsCharSetProber.h
+include/codeblocks/nsCodingStateMachine.h
+include/codeblocks/nsDebug.h
+include/codeblocks/nsEUCJPProber.h
+include/codeblocks/nsEUCKRProber.h
+include/codeblocks/nsEUCTWProber.h
+include/codeblocks/nsError.h
+include/codeblocks/nsEscCharsetProber.h
+include/codeblocks/nsGB2312Prober.h
+include/codeblocks/nsHebrewProber.h
+include/codeblocks/nsLatin1Prober.h
+include/codeblocks/nsMBCSGroupProber.h
+include/codeblocks/nsMemory.h
+include/codeblocks/nsPkgInt.h
+include/codeblocks/nsSBCSGroupProber.h
+include/codeblocks/nsSBCharSetProber.h
+include/codeblocks/nsSJISProber.h
+include/codeblocks/nsUTF8Prober.h
+include/codeblocks/nsUniversalDetector.h
+include/codeblocks/nscore.h
+include/codeblocks/personalitymanager.h
+include/codeblocks/pipedprocess.h
+include/codeblocks/pluginmanager.h
+include/codeblocks/pluginsconfigurationdlg.h
+include/codeblocks/prcpucfg.h
+include/codeblocks/prcpucfg_darwin.h
+include/codeblocks/prcpucfg_linux.h
+include/codeblocks/prcpucfg_openbsd.h
+include/codeblocks/prcpucfg_win95.h
+include/codeblocks/prcpucfg_winnt.h
+include/codeblocks/prep.h
+include/codeblocks/printing_types.h
+include/codeblocks/prmem.h
+include/codeblocks/projectbuildtarget.h
+include/codeblocks/projectfile.h
+include/codeblocks/projectfileoptionsdlg.h
+include/codeblocks/projectlayoutloader.h
+include/codeblocks/projectloader.h
+include/codeblocks/projectloader_hooks.h
+include/codeblocks/projectmanager.h
+include/codeblocks/projectsfilemasksdlg.h
+include/codeblocks/projecttemplateloader.h
+include/codeblocks/prtypes.h
+include/codeblocks/safedelete.h
+include/codeblocks/scripting/bindings/sc_base_types.h
+include/codeblocks/scripting/bindings/sc_plugin.h
+include/codeblocks/scripting/include/sqdbgserver.h
+include/codeblocks/scripting/include/sqrdbg.h
+include/codeblocks/scripting/include/sqstdaux.h
+include/codeblocks/scripting/include/sqstdblob.h
+include/codeblocks/scripting/include/sqstdio.h
+include/codeblocks/scripting/include/sqstdmath.h
+include/codeblocks/scripting/include/sqstdstring.h
+include/codeblocks/scripting/include/sqstdsystem.h
+include/codeblocks/scripting/include/squirrel.h
+include/codeblocks/scripting/sqplus/SqPlusConst.h
+include/codeblocks/scripting/sqplus/SquirrelBindingsUtils.h
+include/codeblocks/scripting/sqplus/SquirrelObject.h
+include/codeblocks/scripting/sqplus/SquirrelVM.h
+include/codeblocks/scripting/sqplus/sqplus.h
+include/codeblocks/scriptingmanager.h
+include/codeblocks/scriptsecuritywarningdlg.h
+include/codeblocks/scrollingdialog.h
+include/codeblocks/sdk.h
+include/codeblocks/sdk_common.h
+include/codeblocks/sdk_events.h
+include/codeblocks/sdk_precomp.h
+include/codeblocks/searchresultslog.h
+include/codeblocks/selecttargetdlg.h
+include/codeblocks/settings.h
+include/codeblocks/templatemanager.h
+include/codeblocks/tinywxuni.h
+include/codeblocks/tinyxml/tinystr.h
+include/codeblocks/tinyxml/tinyxml.h
+include/codeblocks/toolsmanager.h
+include/codeblocks/uservarmanager.h
+include/codeblocks/workspaceloader.h
+include/codeblocks/wxContribItems/KWIC/include/wx/KWIC/AngularMeter.h
+include/codeblocks/wxContribItems/KWIC/include/wx/KWIC/AngularRegulator.h
+include/codeblocks/wxContribItems/KWIC/include/wx/KWIC/BmpCheckBox.h
+include/codeblocks/wxContribItems/KWIC/include/wx/KWIC/BmpSwitcher.h
+include/codeblocks/wxContribItems/KWIC/include/wx/KWIC/LCDClock.h
+include/codeblocks/wxContribItems/KWIC/include/wx/KWIC/LCDWindow.h
+include/codeblocks/wxContribItems/KWIC/include/wx/KWIC/LinearMeter.h
+include/codeblocks/wxContribItems/KWIC/include/wx/KWIC/LinearRegulator.h
+include/codeblocks/wxContribItems/KWIC/include/wx/KWIC/TimeAlarm.h
+include/codeblocks/wxContribItems/KWIC/include/wx/xrc/xh_kwxangularmeterhandler.h
+include/codeblocks/wxContribItems/KWIC/include/wx/xrc/xh_kwxangularregulatorhandler.h
+include/codeblocks/wxContribItems/KWIC/include/wx/xrc/xh_kwxlcdclockhandler.h
+include/codeblocks/wxContribItems/KWIC/include/wx/xrc/xh_kwxlcddisplayhandler.h
+include/codeblocks/wxContribItems/KWIC/include/wx/xrc/xh_kwxlinearmeterhandler.h
+include/codeblocks/wxContribItems/KWIC/include/wx/xrc/xh_kwxlinearregulatorhandler.h
+include/codeblocks/wxContribItems/wxFlatNotebook/include/wx/wxFlatNotebook/fnb_singleton.h
+include/codeblocks/wxContribItems/wxFlatNotebook/include/wx/wxFlatNotebook/fnb_smart_ptr.h
+include/codeblocks/wxContribItems/wxFlatNotebook/include/wx/wxFlatNotebook/renderer.h
+include/codeblocks/wxContribItems/wxFlatNotebook/include/wx/wxFlatNotebook/wxFNBDropTarget.h
+include/codeblocks/wxContribItems/wxFlatNotebook/include/wx/wxFlatNotebook/wxFlatNotebook.h
+include/codeblocks/wxContribItems/wxFlatNotebook/include/wx/wxFlatNotebook/wxFlatNotebookSDK.h
+include/codeblocks/wxContribItems/wxImagePanel/include/wx/wxImagePanel.h
+include/codeblocks/wxContribItems/wxMathPlot/mathplot.h
+include/codeblocks/wxContribItems/wxSpeedButton/wxSpeedButton.h
+include/codeblocks/wxContribItems/wxTreeList/include/wx/treelistctrl.h
+include/codeblocks/wxContribItems/wxchart/include/wx/axis.h
+include/codeblocks/wxContribItems/wxchart/include/wx/bar3dchartpoints.h
+include/codeblocks/wxContribItems/wxchart/include/wx/barchartpoints.h
+include/codeblocks/wxContribItems/wxchart/include/wx/chart.h
+include/codeblocks/wxContribItems/wxchart/include/wx/chartcolors.h
+include/codeblocks/wxContribItems/wxchart/include/wx/chartctrl.h
+include/codeblocks/wxContribItems/wxchart/include/wx/chartdef.h
+include/codeblocks/wxContribItems/wxchart/include/wx/chartpoints.h
+include/codeblocks/wxContribItems/wxchart/include/wx/chartpointstypes.h
+include/codeblocks/wxContribItems/wxchart/include/wx/chartsizes.h
+include/codeblocks/wxContribItems/wxchart/include/wx/charttypes.h
+include/codeblocks/wxContribItems/wxchart/include/wx/chartwindow.h
+include/codeblocks/wxContribItems/wxchart/include/wx/legend.h
+include/codeblocks/wxContribItems/wxchart/include/wx/legendwindow.h
+include/codeblocks/wxContribItems/wxchart/include/wx/pie3dchartpoints.h
+include/codeblocks/wxContribItems/wxchart/include/wx/piechartpoints.h
+include/codeblocks/wxContribItems/wxchart/include/wx/points.h
+include/codeblocks/wxContribItems/wxchart/include/wx/xaxis.h
+include/codeblocks/wxContribItems/wxchart/include/wx/xaxiswindow.h
+include/codeblocks/wxContribItems/wxchart/include/wx/yaxis.h
+include/codeblocks/wxContribItems/wxchart/include/wx/yaxiswindow.h
+include/codeblocks/wxContribItems/wxled/gizmosled/include/wx/gizmos/gizmos.h
+include/codeblocks/wxContribItems/wxled/gizmosled/include/wx/gizmos/ledctrl.h
+include/codeblocks/wxContribItems/wxled/lcdwindow/include/wx/lcdwindow.h
+include/codeblocks/wxContribItems/wxled/led/include/wx/led.h
+include/codeblocks/wxContribItems/wxled/led/include/wx/stateLed.h
+include/codeblocks/wxContribItems/wxled/led/include/xrc/xh_ledHandler.h
+include/codeblocks/wxContribItems/wxled/led/include/xrc/xh_stateLedHandler.h
+include/codeblocks/wxContribItems/wxled/ledpanel/include/wx/advancedmatrixobject.h
+include/codeblocks/wxContribItems/wxled/ledpanel/include/wx/matrixobject.h
+include/codeblocks/wxContribItems/wxled/ledpanel/include/wx/wxledfont.h
+include/codeblocks/wxContribItems/wxled/ledpanel/include/wx/wxledpanel.h
+include/codeblocks/wxContribItems/wxthings/include/wx/things/thingdef.h
+include/codeblocks/wxContribItems/wxthings/include/wx/things/toggle.h
+include/codeblocks/wxpropgrid/include/wx/propgrid/advprops.h
+include/codeblocks/wxpropgrid/include/wx/propgrid/editors.h
+include/codeblocks/wxpropgrid/include/wx/propgrid/extras.h
+include/codeblocks/wxpropgrid/include/wx/propgrid/manager.h
+include/codeblocks/wxpropgrid/include/wx/propgrid/odcombo.h
+include/codeblocks/wxpropgrid/include/wx/propgrid/pg_dox_mainpage.h
+include/codeblocks/wxpropgrid/include/wx/propgrid/propdev.h
+include/codeblocks/wxpropgrid/include/wx/propgrid/propgrid.h
+include/codeblocks/wxpropgrid/include/wx/propgrid/props.h
+include/codeblocks/wxpropgrid/include/wx/propgrid/xh_propgrid.h
+include/codeblocks/wxscintilla/include/wx/wxscintilla.h
+include/codeblocks/xtra_res.h
+include/wxsmith/properties/wxsarraystringeditordlg.h
+include/wxsmith/properties/wxsarraystringproperty.h
+include/wxsmith/properties/wxsboolproperty.h
+include/wxsmith/properties/wxscustomeditorproperty.h
+include/wxsmith/properties/wxseditenumproperty.h
+include/wxsmith/properties/wxsemptyproperty.h
+include/wxsmith/properties/wxsenumproperty.h
+include/wxsmith/properties/wxsflagsproperty.h
+include/wxsmith/properties/wxsfloatproperty.h
+include/wxsmith/properties/wxslongproperty.h
+include/wxsmith/properties/wxsproperties.h
+include/wxsmith/properties/wxsproperty.h
+include/wxsmith/properties/wxspropertycontainer.h
+include/wxsmith/properties/wxspropertygridmanager.h
+include/wxsmith/properties/wxspropertystream.h
+include/wxsmith/properties/wxsquickpropspanel.h
+include/wxsmith/properties/wxsstringproperty.h
+include/wxsmith/wxsadvqpp.h
+include/wxsmith/wxsadvqppchild.h
+include/wxsmith/wxsautoresourcetreeimage.h
+include/wxsmith/wxscodinglang.h
+include/wxsmith/wxseditor.h
+include/wxsmith/wxsgui.h
+include/wxsmith/wxsguifactory.h
+include/wxsmith/wxsproject.h
+include/wxsmith/wxsresource.h
+include/wxsmith/wxsresourcefactory.h
+include/wxsmith/wxsresourcetree.h
+include/wxsmith/wxsresourcetreeitemdata.h
+include/wxsmith/wxwidgets/properties/wxsarraystringcheckeditordlg.h
+include/wxsmith/wxwidgets/properties/wxsarraystringcheckproperty.h
+include/wxsmith/wxwidgets/properties/wxsbitmapiconeditordlg.h
+include/wxsmith/wxwidgets/properties/wxsbitmapiconproperty.h
+include/wxsmith/wxwidgets/properties/wxscolourproperty.h
+include/wxsmith/wxwidgets/properties/wxsdimensionproperty.h
+include/wxsmith/wxwidgets/properties/wxsfonteditordlg.h
+include/wxsmith/wxwidgets/properties/wxsfontfaceeditordlg.h
+include/wxsmith/wxwidgets/properties/wxsfontproperty.h
+include/wxsmith/wxwidgets/properties/wxsimagecomboeditordlg.h
+include/wxsmith/wxwidgets/properties/wxsimagecomboproperty.h
+include/wxsmith/wxwidgets/properties/wxsimagelisteditordlg.h
+include/wxsmith/wxwidgets/properties/wxsimagelistproperty.h
+include/wxsmith/wxwidgets/properties/wxsimageproperty.h
+include/wxsmith/wxwidgets/properties/wxsimagetreeeditordlg.h
+include/wxsmith/wxwidgets/properties/wxsimagetreeproperty.h
+include/wxsmith/wxwidgets/properties/wxspositionsizeproperty.h
+include/wxsmith/wxwidgets/properties/wxssimplefonteditordlg.h
+include/wxsmith/wxwidgets/properties/wxssizerflagsproperty.h
+include/wxsmith/wxwidgets/properties/wxsstyleproperty.h
+include/wxsmith/wxwidgets/wxsbaseproperties.h
+include/wxsmith/wxwidgets/wxscodegenerator.h
+include/wxsmith/wxwidgets/wxscodercontext.h
+include/wxsmith/wxwidgets/wxscontainer.h
+include/wxsmith/wxwidgets/wxscorrector.h
+include/wxsmith/wxwidgets/wxscustomwidgetxmlhandler.h
+include/wxsmith/wxwidgets/wxsdeleteitemres.h
+include/wxsmith/wxwidgets/wxsdialogres.h
+include/wxsmith/wxwidgets/wxsdrawingwindow.h
+include/wxsmith/wxwidgets/wxsevents.h
+include/wxsmith/wxwidgets/wxseventseditor.h
+include/wxsmith/wxwidgets/wxsexproperties.h
+include/wxsmith/wxwidgets/wxsflags.h
+include/wxsmith/wxwidgets/wxsframeres.h
+include/wxsmith/wxwidgets/wxsgridpanel.h
+include/wxsmith/wxwidgets/wxsitem.h
+include/wxsmith/wxwidgets/wxsitemeditor.h
+include/wxsmith/wxwidgets/wxsitemeditorcontent.h
+include/wxsmith/wxwidgets/wxsitemeditordragassist.h
+include/wxsmith/wxwidgets/wxsitemfactory.h
+include/wxsmith/wxwidgets/wxsiteminfo.h
+include/wxsmith/wxwidgets/wxsitemres.h
+include/wxsmith/wxwidgets/wxsitemresdata.h
+include/wxsmith/wxwidgets/wxsitemresdataobject.h
+include/wxsmith/wxwidgets/wxsitemrestreedata.h
+include/wxsmith/wxwidgets/wxsitemundobuffer.h
+include/wxsmith/wxwidgets/wxsnewwindowdlg.h
+include/wxsmith/wxwidgets/wxspanelres.h
+include/wxsmith/wxwidgets/wxsparent.h
+include/wxsmith/wxwidgets/wxspredefinedids.h
+include/wxsmith/wxwidgets/wxsscrollingdialogres.h
+include/wxsmith/wxwidgets/wxssizer.h
+include/wxsmith/wxwidgets/wxssizerparentqp.h
+include/wxsmith/wxwidgets/wxsstyle.h
+include/wxsmith/wxwidgets/wxstool.h
+include/wxsmith/wxwidgets/wxstoolspace.h
+include/wxsmith/wxwidgets/wxswidget.h
+include/wxsmith/wxwidgets/wxwidgetsgui.h
+include/wxsmith/wxwidgets/wxwidgetsguiappadoptingdlg.h
+include/wxsmith/wxwidgets/wxwidgetsguiconfigpanel.h
+include/wxsmith/wxwidgets/wxwidgetsres.h
+include/wxsmith/wxwidgets/wxwidgetsresfactory.h
+lib/codeblocks/plugins/libAstyle.so
+lib/codeblocks/plugins/libAutoVersioning.so
+lib/codeblocks/plugins/libBrowseTracker.so
+lib/codeblocks/plugins/libCccc.so
+lib/codeblocks/plugins/libCppCheck.so
+lib/codeblocks/plugins/libCscope.so
+lib/codeblocks/plugins/libDoxyBlocks.so
+lib/codeblocks/plugins/libEditorConfig.so
+lib/codeblocks/plugins/libEditorTweaks.so
+lib/codeblocks/plugins/libFileManager.so
+lib/codeblocks/plugins/libHexEditor.so
+lib/codeblocks/plugins/libIncrementalSearch.so
+lib/codeblocks/plugins/libMouseSap.so
+lib/codeblocks/plugins/libNassiShneiderman.so
+lib/codeblocks/plugins/libProfiler.so
+lib/codeblocks/plugins/libProjectOptionsManipulator.so
+lib/codeblocks/plugins/libRegExTestbed.so
+lib/codeblocks/plugins/libReopenEditor.so
+lib/codeblocks/plugins/libSmartIndentCpp.so
+lib/codeblocks/plugins/libSmartIndentFortran.so
+lib/codeblocks/plugins/libSmartIndentHDL.so
+lib/codeblocks/plugins/libSmartIndentLua.so
+lib/codeblocks/plugins/libSmartIndentPascal.so
+lib/codeblocks/plugins/libSmartIndentPython.so
+lib/codeblocks/plugins/libSmartIndentXML.so
+lib/codeblocks/plugins/libSpellChecker.so
+lib/codeblocks/plugins/libSymTab.so
+lib/codeblocks/plugins/libThreadSearch.so
+lib/codeblocks/plugins/libToolsPlus.so
+lib/codeblocks/plugins/libValgrind.so
+lib/codeblocks/plugins/libabbreviations.so
+lib/codeblocks/plugins/libautosave.so
+lib/codeblocks/plugins/libbyogames.so
+lib/codeblocks/plugins/libcb_koders.so
+lib/codeblocks/plugins/libclasswizard.so
+lib/codeblocks/plugins/libcodecompletion.so
+lib/codeblocks/plugins/libcodesnippets.so
+lib/codeblocks/plugins/libcodestat.so
+lib/codeblocks/plugins/libcompiler.so
+lib/codeblocks/plugins/libcopystrings.so
+lib/codeblocks/plugins/libdebugger.so
+lib/codeblocks/plugins/libdefaultmimehandler.so
+lib/codeblocks/plugins/libdragscroll.so
+lib/codeblocks/plugins/libenvvars.so
+lib/codeblocks/plugins/libexporter.so
+lib/codeblocks/plugins/libheaderfixup.so
+lib/codeblocks/plugins/libhelp_plugin.so
+lib/codeblocks/plugins/libkeybinder.so
+lib/codeblocks/plugins/liblib_finder.so
+lib/codeblocks/plugins/liboccurrenceshighlighting.so
+lib/codeblocks/plugins/libopenfileslist.so
+lib/codeblocks/plugins/libprojectsimporter.so
+lib/codeblocks/plugins/libscriptedwizard.so
+lib/codeblocks/plugins/libtodo.so
+lib/codeblocks/plugins/libwxSmithAui.so
+lib/codeblocks/plugins/libwxsmith.so
+lib/codeblocks/plugins/libwxsmithcontribitems.so
+lib/codeblocks/wxContribItems/libwxchartctrl.so
+lib/codeblocks/wxContribItems/libwxchartctrl.so.0
+lib/codeblocks/wxContribItems/libwxchartctrl.so.0.0.1
+lib/codeblocks/wxContribItems/libwxcustombutton.so
+lib/codeblocks/wxContribItems/libwxcustombutton.so.0
+lib/codeblocks/wxContribItems/libwxcustombutton.so.0.0.1
+lib/codeblocks/wxContribItems/libwxflatnotebook.so
+lib/codeblocks/wxContribItems/libwxflatnotebook.so.0
+lib/codeblocks/wxContribItems/libwxflatnotebook.so.0.0.1
+lib/codeblocks/wxContribItems/libwximagepanel.so
+lib/codeblocks/wxContribItems/libwximagepanel.so.0
+lib/codeblocks/wxContribItems/libwximagepanel.so.0.0.1
+lib/codeblocks/wxContribItems/libwxkwic.so
+lib/codeblocks/wxContribItems/libwxkwic.so.0
+lib/codeblocks/wxContribItems/libwxkwic.so.0.0.1
+lib/codeblocks/wxContribItems/libwxled.so
+lib/codeblocks/wxContribItems/libwxled.so.0
+lib/codeblocks/wxContribItems/libwxled.so.0.0.1
+lib/codeblocks/wxContribItems/libwxmathplot.so
+lib/codeblocks/wxContribItems/libwxmathplot.so.0
+lib/codeblocks/wxContribItems/libwxmathplot.so.0.0.1
+lib/codeblocks/wxContribItems/libwxspeedbutton.so
+lib/codeblocks/wxContribItems/libwxspeedbutton.so.0
+lib/codeblocks/wxContribItems/libwxspeedbutton.so.0.0.1
+lib/codeblocks/wxContribItems/libwxtreelist.so
+lib/codeblocks/wxContribItems/libwxtreelist.so.0
+lib/codeblocks/wxContribItems/libwxtreelist.so.0.0.1
+lib/libcodeblocks.so
+lib/libcodeblocks.so.0
+lib/libcodeblocks.so.0.0.1
+lib/libwxsmithlib.so
+lib/libwxsmithlib.so.0
+lib/libwxsmithlib.so.0.0.1
+libdata/pkgconfig/cb_wxKWIC.pc
+libdata/pkgconfig/cb_wxchartctrl.pc
+libdata/pkgconfig/cb_wxcontrib.pc
+libdata/pkgconfig/cb_wxcustombutton.pc
+libdata/pkgconfig/cb_wxflatnotebook.pc
+libdata/pkgconfig/cb_wximagepanel.pc
+libdata/pkgconfig/cb_wxled.pc
+libdata/pkgconfig/cb_wxmathplot.pc
+libdata/pkgconfig/cb_wxspeedbutton.pc
+libdata/pkgconfig/cb_wxtreelist.pc
+libdata/pkgconfig/codeblocks.pc
+libdata/pkgconfig/wxsmith-contrib.pc
+libdata/pkgconfig/wxsmith.pc
+libdata/pkgconfig/wxsmithaui.pc
+man/man1/cb_console_runner.1.gz
+man/man1/cb_share_config.1.gz
+man/man1/codeblocks.1.gz
+man/man1/codesnippets.1.gz
+share/appdata/codeblocks-contrib.metainfo.xml
+share/appdata/codeblocks.appdata.xml
+share/applications/codeblocks.desktop
+%%DATADIR%%/Astyle.zip
+%%DATADIR%%/AutoVersioning.zip
+%%DATADIR%%/BrowseTracker.zip
+%%DATADIR%%/Cccc.zip
+%%DATADIR%%/CppCheck.zip
+%%DATADIR%%/Cscope.zip
+%%DATADIR%%/DoxyBlocks.zip
+%%DATADIR%%/EditorConfig.zip
+%%DATADIR%%/EditorTweaks.zip
+%%DATADIR%%/FileManager.zip
+%%DATADIR%%/HexEditor.zip
+%%DATADIR%%/IncrementalSearch.zip
+%%DATADIR%%/MouseSap.zip
+%%DATADIR%%/NassiShneiderman.zip
+%%DATADIR%%/Profiler.zip
+%%DATADIR%%/ProjectOptionsManipulator.zip
+%%DATADIR%%/RegExTestbed.zip
+%%DATADIR%%/ReopenEditor.zip
+%%DATADIR%%/SmartIndentCpp.zip
+%%DATADIR%%/SmartIndentFortran.zip
+%%DATADIR%%/SmartIndentHDL.zip
+%%DATADIR%%/SmartIndentLua.zip
+%%DATADIR%%/SmartIndentPascal.zip
+%%DATADIR%%/SmartIndentPython.zip
+%%DATADIR%%/SmartIndentXML.zip
+%%DATADIR%%/SpellChecker.zip
+%%DATADIR%%/SpellChecker/OnlineSpellChecking.xml
+%%DATADIR%%/SpellChecker/de_AT.png
+%%DATADIR%%/SpellChecker/de_CH.png
+%%DATADIR%%/SpellChecker/de_DE.png
+%%DATADIR%%/SpellChecker/disabled.png
+%%DATADIR%%/SpellChecker/en_AU.png
+%%DATADIR%%/SpellChecker/en_CA.png
+%%DATADIR%%/SpellChecker/en_GB.png
+%%DATADIR%%/SpellChecker/en_NZ.png
+%%DATADIR%%/SpellChecker/en_US.png
+%%DATADIR%%/SpellChecker/fr_FR.png
+%%DATADIR%%/SpellChecker/ru_RU.png
+%%DATADIR%%/SymTab.zip
+%%DATADIR%%/ThreadSearch.zip
+%%DATADIR%%/ToolsPlus.zip
+%%DATADIR%%/Valgrind.zip
+%%DATADIR%%/abbreviations.zip
+%%DATADIR%%/autosave.zip
+%%DATADIR%%/byogames.zip
+%%DATADIR%%/cb_koders.zip
+%%DATADIR%%/classwizard.zip
+%%DATADIR%%/codecompletion.zip
+%%DATADIR%%/codesnippets.zip
+%%DATADIR%%/codestat.zip
+%%DATADIR%%/compiler.zip
+%%DATADIR%%/compilers/compiler_android-gcc.xml
+%%DATADIR%%/compilers/compiler_avr-gcc.xml
+%%DATADIR%%/compilers/compiler_bcc.xml
+%%DATADIR%%/compilers/compiler_bfin-elf-gcc.xml
+%%DATADIR%%/compilers/compiler_clang.xml
+%%DATADIR%%/compilers/compiler_dmc.xml
+%%DATADIR%%/compilers/compiler_dmd.xml
+%%DATADIR%%/compilers/compiler_ldc.xml
+%%DATADIR%%/compilers/compiler_lm32-gcc.xml
+%%DATADIR%%/compilers/compiler_lm8-gcc.xml
+%%DATADIR%%/compilers/compiler_msp430-gcc.xml
+%%DATADIR%%/compilers/compiler_mw.xml
+%%DATADIR%%/compilers/compiler_null.xml
+%%DATADIR%%/compilers/compiler_pgifortran.xml
+%%DATADIR%%/compilers/compiler_powerpc-eabi.xml
+%%DATADIR%%/compilers/compiler_ppc-gcc.xml
+%%DATADIR%%/compilers/compiler_sdcc.xml
+%%DATADIR%%/compilers/compiler_tcc.xml
+%%DATADIR%%/compilers/compiler_tricore-gcc.xml
+%%DATADIR%%/compilers/compiler_zpu-gcc.xml
+%%DATADIR%%/compilers/options_android-gcc.xml
+%%DATADIR%%/compilers/options_arm-elf-gcc.xml
+%%DATADIR%%/compilers/options_avr-gcc.xml
+%%DATADIR%%/compilers/options_bcc.xml
+%%DATADIR%%/compilers/options_bfin-elf-gcc.xml
+%%DATADIR%%/compilers/options_clang.xml
+%%DATADIR%%/compilers/options_common_architecture.xml
+%%DATADIR%%/compilers/options_common_cmds.xml
+%%DATADIR%%/compilers/options_common_codegen.xml
+%%DATADIR%%/compilers/options_common_optimization.xml
+%%DATADIR%%/compilers/options_common_optimize-msvc.xml
+%%DATADIR%%/compilers/options_common_re-gf.xml
+%%DATADIR%%/compilers/options_common_re-iar.xml
+%%DATADIR%%/compilers/options_common_re-msvc.xml
+%%DATADIR%%/compilers/options_common_re.xml
+%%DATADIR%%/compilers/options_common_runtime.xml
+%%DATADIR%%/compilers/options_common_sort.xml
+%%DATADIR%%/compilers/options_common_warnings-msvc.xml
+%%DATADIR%%/compilers/options_common_warnings.xml
+%%DATADIR%%/compilers/options_cygwin.xml
+%%DATADIR%%/compilers/options_dmc.xml
+%%DATADIR%%/compilers/options_dmd.xml
+%%DATADIR%%/compilers/options_g95.xml
+%%DATADIR%%/compilers/options_gcc.xml
+%%DATADIR%%/compilers/options_gdc.xml
+%%DATADIR%%/compilers/options_gfortran.xml
+%%DATADIR%%/compilers/options_iar8051.xml
+%%DATADIR%%/compilers/options_iararm.xml
+%%DATADIR%%/compilers/options_icc.xml
+%%DATADIR%%/compilers/options_keilc51.xml
+%%DATADIR%%/compilers/options_keilcx51.xml
+%%DATADIR%%/compilers/options_lcc.xml
+%%DATADIR%%/compilers/options_ldc.xml
+%%DATADIR%%/compilers/options_lm32-gcc.xml
+%%DATADIR%%/compilers/options_lm8-gcc.xml
+%%DATADIR%%/compilers/options_msp430-gcc.xml
+%%DATADIR%%/compilers/options_msvc10.xml
+%%DATADIR%%/compilers/options_msvc8.xml
+%%DATADIR%%/compilers/options_msvctk.xml
+%%DATADIR%%/compilers/options_mw.xml
+%%DATADIR%%/compilers/options_null.xml
+%%DATADIR%%/compilers/options_ow.xml
+%%DATADIR%%/compilers/options_pgifortran.xml
+%%DATADIR%%/compilers/options_powerpc-eabi.xml
+%%DATADIR%%/compilers/options_ppc-gcc.xml
+%%DATADIR%%/compilers/options_sdcc.xml
+%%DATADIR%%/compilers/options_tcc.xml
+%%DATADIR%%/compilers/options_tricore-gcc.xml
+%%DATADIR%%/compilers/options_zpu-gcc.xml
+%%DATADIR%%/copystrings.zip
+%%DATADIR%%/debugger.zip
+%%DATADIR%%/defaultmimehandler.zip
+%%DATADIR%%/dragscroll.zip
+%%DATADIR%%/envvars.zip
+%%DATADIR%%/exporter.zip
+%%DATADIR%%/headerfixup.zip
+%%DATADIR%%/help_plugin.zip
+%%DATADIR%%/icons/app.xpm
+%%DATADIR%%/icons/app_64.xpm
+%%DATADIR%%/icons/c64.xpm
+%%DATADIR%%/icons/cbp64.xpm
+%%DATADIR%%/icons/cg64.xpm
+%%DATADIR%%/icons/cpp64.xpm
+%%DATADIR%%/icons/csd64.xpm
+%%DATADIR%%/icons/d64.xpm
+%%DATADIR%%/icons/dev64.xpm
+%%DATADIR%%/icons/dsp64.xpm
+%%DATADIR%%/icons/dsw64.xpm
+%%DATADIR%%/icons/f64.xpm
+%%DATADIR%%/icons/h64.xpm
+%%DATADIR%%/icons/proj64.xpm
+%%DATADIR%%/icons/rc64.xpm
+%%DATADIR%%/images/16x16/bookmark_add.png
+%%DATADIR%%/images/16x16/dbginfo.png
+%%DATADIR%%/images/16x16/dbgnext.png
+%%DATADIR%%/images/16x16/dbgnexti.png
+%%DATADIR%%/images/16x16/dbgpause.png
+%%DATADIR%%/images/16x16/dbgrun.png
+%%DATADIR%%/images/16x16/dbgrunto.png
+%%DATADIR%%/images/16x16/dbgstep.png
+%%DATADIR%%/images/16x16/dbgstepi.png
+%%DATADIR%%/images/16x16/dbgstepout.png
+%%DATADIR%%/images/16x16/dbgstop.png
+%%DATADIR%%/images/16x16/dbgwindow.png
+%%DATADIR%%/images/16x16/editcopy.png
+%%DATADIR%%/images/16x16/editcut.png
+%%DATADIR%%/images/16x16/editpaste.png
+%%DATADIR%%/images/16x16/exit.png
+%%DATADIR%%/images/16x16/fileclose.png
+%%DATADIR%%/images/16x16/filefind.png
+%%DATADIR%%/images/16x16/filefindnext.png
+%%DATADIR%%/images/16x16/filefindprev.png
+%%DATADIR%%/images/16x16/filenew.png
+%%DATADIR%%/images/16x16/fileopen.png
+%%DATADIR%%/images/16x16/fileprint.png
+%%DATADIR%%/images/16x16/filequickprint.png
+%%DATADIR%%/images/16x16/filesave.png
+%%DATADIR%%/images/16x16/filesaveall.png
+%%DATADIR%%/images/16x16/filesaveas.png
+%%DATADIR%%/images/16x16/findf.png
+%%DATADIR%%/images/16x16/folder.png
+%%DATADIR%%/images/16x16/folder_new.png
+%%DATADIR%%/images/16x16/folder_open.png
+%%DATADIR%%/images/16x16/folder_yel.png
+%%DATADIR%%/images/16x16/folder_yel_open.png
+%%DATADIR%%/images/16x16/goto.png
+%%DATADIR%%/images/16x16/history_clear.png
+%%DATADIR%%/images/16x16/idea.png
+%%DATADIR%%/images/16x16/info.png
+%%DATADIR%%/images/16x16/mark.png
+%%DATADIR%%/images/16x16/mark_clear.png
+%%DATADIR%%/images/16x16/mark_next.png
+%%DATADIR%%/images/16x16/mark_prev.png
+%%DATADIR%%/images/16x16/newproject.png
+%%DATADIR%%/images/16x16/next.png
+%%DATADIR%%/images/16x16/plug.png
+%%DATADIR%%/images/16x16/prev.png
+%%DATADIR%%/images/16x16/project-readonly.png
+%%DATADIR%%/images/16x16/project.png
+%%DATADIR%%/images/16x16/projectnew.png
+%%DATADIR%%/images/16x16/redo.png
+%%DATADIR%%/images/16x16/run.png
+%%DATADIR%%/images/16x16/searchreplace.png
+%%DATADIR%%/images/16x16/searchreplacef.png
+%%DATADIR%%/images/16x16/undo.png
+%%DATADIR%%/images/16x16/view_sidetree.png
+%%DATADIR%%/images/16x16/view_tree.png
+%%DATADIR%%/images/16x16/window_fullscreen.png
+%%DATADIR%%/images/16x16/workspace-readonly.png
+%%DATADIR%%/images/16x16/workspace.png
+%%DATADIR%%/images/DoxyBlocks/16x16/chm.png
+%%DATADIR%%/images/DoxyBlocks/16x16/comment_block.png
+%%DATADIR%%/images/DoxyBlocks/16x16/comment_line.png
+%%DATADIR%%/images/DoxyBlocks/16x16/configure.png
+%%DATADIR%%/images/DoxyBlocks/16x16/doxywizard.png
+%%DATADIR%%/images/DoxyBlocks/16x16/extract.png
+%%DATADIR%%/images/DoxyBlocks/16x16/html.png
+%%DATADIR%%/images/DoxyBlocks/chm.png
+%%DATADIR%%/images/DoxyBlocks/comment_block.png
+%%DATADIR%%/images/DoxyBlocks/comment_line.png
+%%DATADIR%%/images/DoxyBlocks/configure.png
+%%DATADIR%%/images/DoxyBlocks/doxywizard.png
+%%DATADIR%%/images/DoxyBlocks/extract.png
+%%DATADIR%%/images/DoxyBlocks/html.png
+%%DATADIR%%/images/ThreadSearch/16x16/findf.png
+%%DATADIR%%/images/ThreadSearch/16x16/findfdisabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/folder.png
+%%DATADIR%%/images/ThreadSearch/16x16/folderdisabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/folderselected.png
+%%DATADIR%%/images/ThreadSearch/16x16/off.png
+%%DATADIR%%/images/ThreadSearch/16x16/offdisabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/on.png
+%%DATADIR%%/images/ThreadSearch/16x16/ondisabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/openfiles.png
+%%DATADIR%%/images/ThreadSearch/16x16/openfiles1.png
+%%DATADIR%%/images/ThreadSearch/16x16/openfiles1disabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/openfiles1selected.png
+%%DATADIR%%/images/ThreadSearch/16x16/openfilesdisabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/openfilesselected.png
+%%DATADIR%%/images/ThreadSearch/16x16/options.png
+%%DATADIR%%/images/ThreadSearch/16x16/optionsactive.png
+%%DATADIR%%/images/ThreadSearch/16x16/optionsdisabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/project.png
+%%DATADIR%%/images/ThreadSearch/16x16/project1.png
+%%DATADIR%%/images/ThreadSearch/16x16/project1disabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/project1selected.png
+%%DATADIR%%/images/ThreadSearch/16x16/projectdisabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/projectselected.png
+%%DATADIR%%/images/ThreadSearch/16x16/showdir.png
+%%DATADIR%%/images/ThreadSearch/16x16/showdirdisabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/stop.png
+%%DATADIR%%/images/ThreadSearch/16x16/stopdisabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/target.png
+%%DATADIR%%/images/ThreadSearch/16x16/target1.png
+%%DATADIR%%/images/ThreadSearch/16x16/target1disabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/target1selected.png
+%%DATADIR%%/images/ThreadSearch/16x16/targetdisabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/targetselected.png
+%%DATADIR%%/images/ThreadSearch/16x16/workspace.png
+%%DATADIR%%/images/ThreadSearch/16x16/workspacedisabled.png
+%%DATADIR%%/images/ThreadSearch/16x16/workspaceselected.png
+%%DATADIR%%/images/ThreadSearch/22x22/file.png
+%%DATADIR%%/images/ThreadSearch/22x22/findf.png
+%%DATADIR%%/images/ThreadSearch/22x22/findfdisabled.png
+%%DATADIR%%/images/ThreadSearch/22x22/folder.png
+%%DATADIR%%/images/ThreadSearch/22x22/folderdisabled.png
+%%DATADIR%%/images/ThreadSearch/22x22/folderselected.png
+%%DATADIR%%/images/ThreadSearch/22x22/lookingglass.png
+%%DATADIR%%/images/ThreadSearch/22x22/off.png
+%%DATADIR%%/images/ThreadSearch/22x22/offdisabled.png
+%%DATADIR%%/images/ThreadSearch/22x22/on.png
+%%DATADIR%%/images/ThreadSearch/22x22/ondisabled.png
+%%DATADIR%%/images/ThreadSearch/22x22/openfiles.png
+%%DATADIR%%/images/ThreadSearch/22x22/openfilesdisabled.png
+%%DATADIR%%/images/ThreadSearch/22x22/openfilesselected.png
+%%DATADIR%%/images/ThreadSearch/22x22/options.png
+%%DATADIR%%/images/ThreadSearch/22x22/optionsactive.png
+%%DATADIR%%/images/ThreadSearch/22x22/optionsdisabled.png
+%%DATADIR%%/images/ThreadSearch/22x22/project.png
+%%DATADIR%%/images/ThreadSearch/22x22/project1.png
+%%DATADIR%%/images/ThreadSearch/22x22/project1disabled.png
+%%DATADIR%%/images/ThreadSearch/22x22/project1selected.png
+%%DATADIR%%/images/ThreadSearch/22x22/project2.png
+%%DATADIR%%/images/ThreadSearch/22x22/project2d.png
+%%DATADIR%%/images/ThreadSearch/22x22/project2s.png
+%%DATADIR%%/images/ThreadSearch/22x22/projectdisabled.png
+%%DATADIR%%/images/ThreadSearch/22x22/projectselected.png
+%%DATADIR%%/images/ThreadSearch/22x22/showdir.png
+%%DATADIR%%/images/ThreadSearch/22x22/showdirdisabled.png
+%%DATADIR%%/images/ThreadSearch/22x22/stop.png
+%%DATADIR%%/images/ThreadSearch/22x22/stopdisabled.png
+%%DATADIR%%/images/ThreadSearch/22x22/target.png
+%%DATADIR%%/images/ThreadSearch/22x22/target1.png
+%%DATADIR%%/images/ThreadSearch/22x22/target1disabled.png
+%%DATADIR%%/images/ThreadSearch/22x22/target1selected.png
+%%DATADIR%%/images/ThreadSearch/22x22/targetdisabled.png
+%%DATADIR%%/images/ThreadSearch/22x22/targetselected.png
+%%DATADIR%%/images/ThreadSearch/22x22/workspace.png
+%%DATADIR%%/images/ThreadSearch/22x22/workspacedisabled.png
+%%DATADIR%%/images/ThreadSearch/22x22/workspaceselected.png
+%%DATADIR%%/images/ThreadSearch/folder.png
+%%DATADIR%%/images/ThreadSearch/folderdisabled.png
+%%DATADIR%%/images/ThreadSearch/folderselected.png
+%%DATADIR%%/images/ThreadSearch/off.png
+%%DATADIR%%/images/ThreadSearch/on.png
+%%DATADIR%%/images/ThreadSearch/openfiles.png
+%%DATADIR%%/images/ThreadSearch/openfilesdisabled.png
+%%DATADIR%%/images/ThreadSearch/openfilesselected.png
+%%DATADIR%%/images/ThreadSearch/project.png
+%%DATADIR%%/images/ThreadSearch/project1.png
+%%DATADIR%%/images/ThreadSearch/project1disabled.png
+%%DATADIR%%/images/ThreadSearch/project1selected.png
+%%DATADIR%%/images/ThreadSearch/projectdisabled.png
+%%DATADIR%%/images/ThreadSearch/projectselected.png
+%%DATADIR%%/images/ThreadSearch/showdir.png
+%%DATADIR%%/images/ThreadSearch/showdirdisabled.png
+%%DATADIR%%/images/ThreadSearch/target.png
+%%DATADIR%%/images/ThreadSearch/target1.png
+%%DATADIR%%/images/ThreadSearch/target1disabled.png
+%%DATADIR%%/images/ThreadSearch/target1selected.png
+%%DATADIR%%/images/ThreadSearch/targetdisabled.png
+%%DATADIR%%/images/ThreadSearch/targetselected.png
+%%DATADIR%%/images/ThreadSearch/workspace.png
+%%DATADIR%%/images/ThreadSearch/workspacedisabled.png
+%%DATADIR%%/images/ThreadSearch/workspaceselected.png
+%%DATADIR%%/images/ascii.png
+%%DATADIR%%/images/closebutton.png
+%%DATADIR%%/images/codeblocks.png
+%%DATADIR%%/images/codecompletion/class.png
+%%DATADIR%%/images/codecompletion/class_folder.png
+%%DATADIR%%/images/codecompletion/class_private.png
+%%DATADIR%%/images/codecompletion/class_protected.png
+%%DATADIR%%/images/codecompletion/class_public.png
+%%DATADIR%%/images/codecompletion/ctor_private.png
+%%DATADIR%%/images/codecompletion/ctor_protected.png
+%%DATADIR%%/images/codecompletion/ctor_public.png
+%%DATADIR%%/images/codecompletion/dtor_private.png
+%%DATADIR%%/images/codecompletion/dtor_protected.png
+%%DATADIR%%/images/codecompletion/dtor_public.png
+%%DATADIR%%/images/codecompletion/enum.png
+%%DATADIR%%/images/codecompletion/enum_private.png
+%%DATADIR%%/images/codecompletion/enum_protected.png
+%%DATADIR%%/images/codecompletion/enum_public.png
+%%DATADIR%%/images/codecompletion/enumerator.png
+%%DATADIR%%/images/codecompletion/enums_folder.png
+%%DATADIR%%/images/codecompletion/folder.png
+%%DATADIR%%/images/codecompletion/folder_blue.png
+%%DATADIR%%/images/codecompletion/folder_blue_open.png
+%%DATADIR%%/images/codecompletion/folder_green.png
+%%DATADIR%%/images/codecompletion/folder_green_open.png
+%%DATADIR%%/images/codecompletion/folder_open.png
+%%DATADIR%%/images/codecompletion/funcs_folder.png
+%%DATADIR%%/images/codecompletion/macro_def.png
+%%DATADIR%%/images/codecompletion/macro_def_folder.png
+%%DATADIR%%/images/codecompletion/macro_use.png
+%%DATADIR%%/images/codecompletion/macro_use_folder.png
+%%DATADIR%%/images/codecompletion/macro_use_private.png
+%%DATADIR%%/images/codecompletion/macro_use_protected.png
+%%DATADIR%%/images/codecompletion/macro_use_public.png
+%%DATADIR%%/images/codecompletion/method_private.png
+%%DATADIR%%/images/codecompletion/method_protected.png
+%%DATADIR%%/images/codecompletion/method_public.png
+%%DATADIR%%/images/codecompletion/namespace.png
+%%DATADIR%%/images/codecompletion/others_folder.png
+%%DATADIR%%/images/codecompletion/symbols_folder.png
+%%DATADIR%%/images/codecompletion/typedef.png
+%%DATADIR%%/images/codecompletion/typedef_private.png
+%%DATADIR%%/images/codecompletion/typedef_protected.png
+%%DATADIR%%/images/codecompletion/typedef_public.png
+%%DATADIR%%/images/codecompletion/typedefs_folder.png
+%%DATADIR%%/images/codecompletion/var_private.png
+%%DATADIR%%/images/codecompletion/var_protected.png
+%%DATADIR%%/images/codecompletion/var_public.png
+%%DATADIR%%/images/codecompletion/vars_folder.png
+%%DATADIR%%/images/codesnippets/allsnippets.png
+%%DATADIR%%/images/codesnippets/category.png
+%%DATADIR%%/images/codesnippets/findf.png
+%%DATADIR%%/images/codesnippets/findfdisabled.png
+%%DATADIR%%/images/codesnippets/options.png
+%%DATADIR%%/images/codesnippets/optionsdisabled.png
+%%DATADIR%%/images/codesnippets/snippet.png
+%%DATADIR%%/images/codesnippets/stop.png
+%%DATADIR%%/images/codesnippets/stopdisabled.png
+%%DATADIR%%/images/compile.png
+%%DATADIR%%/images/compilerun.png
+%%DATADIR%%/images/contents_16x16.png
+%%DATADIR%%/images/dbginfo.png
+%%DATADIR%%/images/dbgnext.png
+%%DATADIR%%/images/dbgnexti.png
+%%DATADIR%%/images/dbgpause.png
+%%DATADIR%%/images/dbgrun.png
+%%DATADIR%%/images/dbgrunto.png
+%%DATADIR%%/images/dbgstep.png
+%%DATADIR%%/images/dbgstepi.png
+%%DATADIR%%/images/dbgstepout.png
+%%DATADIR%%/images/dbgstop.png
+%%DATADIR%%/images/dbgwindow.png
+%%DATADIR%%/images/edit_16x16.png
+%%DATADIR%%/images/editcopy.png
+%%DATADIR%%/images/editcut.png
+%%DATADIR%%/images/editpaste.png
+%%DATADIR%%/images/file-missing.png
+%%DATADIR%%/images/file-modified.png
+%%DATADIR%%/images/file-readonly.png
+%%DATADIR%%/images/file.png
+%%DATADIR%%/images/filefind.png
+%%DATADIR%%/images/filenew.png
+%%DATADIR%%/images/fileopen.png
+%%DATADIR%%/images/fileprint.png
+%%DATADIR%%/images/filesave.png
+%%DATADIR%%/images/filesaveall.png
+%%DATADIR%%/images/filesaveas.png
+%%DATADIR%%/images/flag_16x16.png
+%%DATADIR%%/images/folder.png
+%%DATADIR%%/images/folder_new.png
+%%DATADIR%%/images/folder_open.png
+%%DATADIR%%/images/misc_16x16.png
+%%DATADIR%%/images/modified_file.png
+%%DATADIR%%/images/newproject.png
+%%DATADIR%%/images/project-readonly.png
+%%DATADIR%%/images/project.png
+%%DATADIR%%/images/rc-file-added.png
+%%DATADIR%%/images/rc-file-conflict.png
+%%DATADIR%%/images/rc-file-external.png
+%%DATADIR%%/images/rc-file-gotlock.png
+%%DATADIR%%/images/rc-file-lockstolen.png
+%%DATADIR%%/images/rc-file-mismatch.png
+%%DATADIR%%/images/rc-file-missing.png
+%%DATADIR%%/images/rc-file-modified.png
+%%DATADIR%%/images/rc-file-noncontrolled.png
+%%DATADIR%%/images/rc-file-outofdate.png
+%%DATADIR%%/images/rc-file-requireslock.png
+%%DATADIR%%/images/rc-file-uptodate.png
+%%DATADIR%%/images/readonly.png
+%%DATADIR%%/images/rebuild.png
+%%DATADIR%%/images/redo.png
+%%DATADIR%%/images/run.png
+%%DATADIR%%/images/searchreplace.png
+%%DATADIR%%/images/settings/DoxyBlocks-off.png
+%%DATADIR%%/images/settings/DoxyBlocks.png
+%%DATADIR%%/images/settings/SpellChecker-off.png
+%%DATADIR%%/images/settings/SpellChecker.png
+%%DATADIR%%/images/settings/ThreadSearch-off.png
+%%DATADIR%%/images/settings/ThreadSearch.png
+%%DATADIR%%/images/settings/ToolsPlus-off.png
+%%DATADIR%%/images/settings/ToolsPlus.png
+%%DATADIR%%/images/settings/abbrev-off.png
+%%DATADIR%%/images/settings/abbrev.png
+%%DATADIR%%/images/settings/astyle-plugin-off.png
+%%DATADIR%%/images/settings/astyle-plugin.png
+%%DATADIR%%/images/settings/autosave-off.png
+%%DATADIR%%/images/settings/autosave.png
+%%DATADIR%%/images/settings/batch-off.png
+%%DATADIR%%/images/settings/batch.png
+%%DATADIR%%/images/settings/codecompletion-off.png
+%%DATADIR%%/images/settings/codecompletion.png
+%%DATADIR%%/images/settings/codestats-off.png
+%%DATADIR%%/images/settings/codestats.png
+%%DATADIR%%/images/settings/colours-off.png
+%%DATADIR%%/images/settings/colours.png
+%%DATADIR%%/images/settings/compiler-off.png
+%%DATADIR%%/images/settings/compiler.png
+%%DATADIR%%/images/settings/debugger-off.png
+%%DATADIR%%/images/settings/debugger.png
+%%DATADIR%%/images/settings/default-code-off.png
+%%DATADIR%%/images/settings/default-code.png
+%%DATADIR%%/images/settings/dialogs-off.png
+%%DATADIR%%/images/settings/dialogs.png
+%%DATADIR%%/images/settings/dragscroll-off.png
+%%DATADIR%%/images/settings/dragscroll.png
+%%DATADIR%%/images/settings/editor-off.png
+%%DATADIR%%/images/settings/editor.png
+%%DATADIR%%/images/settings/envvars-off.png
+%%DATADIR%%/images/settings/envvars.png
+%%DATADIR%%/images/settings/extensions-off.png
+%%DATADIR%%/images/settings/extensions.png
+%%DATADIR%%/images/settings/folding-off.png
+%%DATADIR%%/images/settings/folding.png
+%%DATADIR%%/images/settings/general-prefs-off.png
+%%DATADIR%%/images/settings/general-prefs.png
+%%DATADIR%%/images/settings/generic-plugin-off.png
+%%DATADIR%%/images/settings/generic-plugin.png
+%%DATADIR%%/images/settings/gutter-margin-off.png
+%%DATADIR%%/images/settings/gutter-margin.png
+%%DATADIR%%/images/settings/help-plugin-off.png
+%%DATADIR%%/images/settings/help-plugin.png
+%%DATADIR%%/images/settings/incsearch-off.png
+%%DATADIR%%/images/settings/incsearch.png
+%%DATADIR%%/images/settings/net-off.png
+%%DATADIR%%/images/settings/net.png
+%%DATADIR%%/images/settings/notebook-appearance-off.png
+%%DATADIR%%/images/settings/notebook-appearance.png
+%%DATADIR%%/images/settings/onekeytobindthem-off.png
+%%DATADIR%%/images/settings/onekeytobindthem.png
+%%DATADIR%%/images/settings/profiler-off.png
+%%DATADIR%%/images/settings/profiler.png
+%%DATADIR%%/images/settings/syntax-highlight-off.png
+%%DATADIR%%/images/settings/syntax-highlight.png
+%%DATADIR%%/images/settings/todo-off.png
+%%DATADIR%%/images/settings/todo.png
+%%DATADIR%%/images/settings/valgrind-off.png
+%%DATADIR%%/images/settings/valgrind.png
+%%DATADIR%%/images/settings/view-off.png
+%%DATADIR%%/images/settings/view.png
+%%DATADIR%%/images/settings/wxsmith-off.png
+%%DATADIR%%/images/settings/wxsmith.png
+%%DATADIR%%/images/source.png
+%%DATADIR%%/images/splash.png
+%%DATADIR%%/images/splash_0802.png
+%%DATADIR%%/images/splash_1005.png
+%%DATADIR%%/images/splash_1211.png
+%%DATADIR%%/images/splash_1312.png
+%%DATADIR%%/images/stop.png
+%%DATADIR%%/images/undo.png
+%%DATADIR%%/images/vfolder_open.png
+%%DATADIR%%/images/workspace-readonly.png
+%%DATADIR%%/images/workspace.png
+%%DATADIR%%/images/wxsmith/Custom16.png
+%%DATADIR%%/images/wxsmith/Custom32.png
+%%DATADIR%%/images/wxsmith/Spacer16.png
+%%DATADIR%%/images/wxsmith/Spacer32.png
+%%DATADIR%%/images/wxsmith/deletewidget16.png
+%%DATADIR%%/images/wxsmith/deletewidget32.png
+%%DATADIR%%/images/wxsmith/insertafter16.png
+%%DATADIR%%/images/wxsmith/insertafter32.png
+%%DATADIR%%/images/wxsmith/insertbefore16.png
+%%DATADIR%%/images/wxsmith/insertbefore32.png
+%%DATADIR%%/images/wxsmith/insertinto16.png
+%%DATADIR%%/images/wxsmith/insertinto32.png
+%%DATADIR%%/images/wxsmith/insertpoint16.png
+%%DATADIR%%/images/wxsmith/insertpoint32.png
+%%DATADIR%%/images/wxsmith/quickpropsclose16.png
+%%DATADIR%%/images/wxsmith/quickpropsclose32.png
+%%DATADIR%%/images/wxsmith/quickpropsopen16.png
+%%DATADIR%%/images/wxsmith/quickpropsopen32.png
+%%DATADIR%%/images/wxsmith/selected16.png
+%%DATADIR%%/images/wxsmith/selected32.png
+%%DATADIR%%/images/wxsmith/showpreview16.png
+%%DATADIR%%/images/wxsmith/showpreview32.png
+%%DATADIR%%/images/wxsmith/wxAnimationCtrl16.png
+%%DATADIR%%/images/wxsmith/wxAnimationCtrl32.png
+%%DATADIR%%/images/wxsmith/wxBitmapButton16.png
+%%DATADIR%%/images/wxsmith/wxBitmapButton32.png
+%%DATADIR%%/images/wxsmith/wxBitmapComboBox16.png
+%%DATADIR%%/images/wxsmith/wxBitmapComboBox32.png
+%%DATADIR%%/images/wxsmith/wxBoxSizer16.png
+%%DATADIR%%/images/wxsmith/wxBoxSizer32.png
+%%DATADIR%%/images/wxsmith/wxButton16.png
+%%DATADIR%%/images/wxsmith/wxButton32.png
+%%DATADIR%%/images/wxsmith/wxCalendarCtrl16.png
+%%DATADIR%%/images/wxsmith/wxCalendarCtrl32.png
+%%DATADIR%%/images/wxsmith/wxCheckBox16.png
+%%DATADIR%%/images/wxsmith/wxCheckBox32.png
+%%DATADIR%%/images/wxsmith/wxCheckListBox16.png
+%%DATADIR%%/images/wxsmith/wxCheckListBox32.png
+%%DATADIR%%/images/wxsmith/wxChoice16.png
+%%DATADIR%%/images/wxsmith/wxChoice32.png
+%%DATADIR%%/images/wxsmith/wxChoicebook16.png
+%%DATADIR%%/images/wxsmith/wxChoicebook32.png
+%%DATADIR%%/images/wxsmith/wxColourDialog16.png
+%%DATADIR%%/images/wxsmith/wxColourDialog32.png
+%%DATADIR%%/images/wxsmith/wxColourPickerCtrl16.png
+%%DATADIR%%/images/wxsmith/wxColourPickerCtrl32.png
+%%DATADIR%%/images/wxsmith/wxComboBox16.png
+%%DATADIR%%/images/wxsmith/wxComboBox32.png
+%%DATADIR%%/images/wxsmith/wxContextHelpButton16.png
+%%DATADIR%%/images/wxsmith/wxContextHelpButton32.png
+%%DATADIR%%/images/wxsmith/wxDatePickerCtrl16.png
+%%DATADIR%%/images/wxsmith/wxDatePickerCtrl32.png
+%%DATADIR%%/images/wxsmith/wxDialUpManager16.png
+%%DATADIR%%/images/wxsmith/wxDialUpManager32.png
+%%DATADIR%%/images/wxsmith/wxDialog16.png
+%%DATADIR%%/images/wxsmith/wxDialog32.png
+%%DATADIR%%/images/wxsmith/wxDirDialog16.png
+%%DATADIR%%/images/wxsmith/wxDirDialog32.png
+%%DATADIR%%/images/wxsmith/wxDirPickerCtrl16.png
+%%DATADIR%%/images/wxsmith/wxDirPickerCtrl32.png
+%%DATADIR%%/images/wxsmith/wxFileDialog16.png
+%%DATADIR%%/images/wxsmith/wxFileDialog32.png
+%%DATADIR%%/images/wxsmith/wxFilePickerCtrl16.png
+%%DATADIR%%/images/wxsmith/wxFilePickerCtrl32.png
+%%DATADIR%%/images/wxsmith/wxFindReplaceDialog16.png
+%%DATADIR%%/images/wxsmith/wxFindReplaceDialog32.png
+%%DATADIR%%/images/wxsmith/wxFlexGridSizer16.png
+%%DATADIR%%/images/wxsmith/wxFlexGridSizer32.png
+%%DATADIR%%/images/wxsmith/wxFontDialog16.png
+%%DATADIR%%/images/wxsmith/wxFontDialog32.png
+%%DATADIR%%/images/wxsmith/wxFontPickerCtrl16.png
+%%DATADIR%%/images/wxsmith/wxFontPickerCtrl32.png
+%%DATADIR%%/images/wxsmith/wxFrame16.png
+%%DATADIR%%/images/wxsmith/wxFrame32.png
+%%DATADIR%%/images/wxsmith/wxGLCanvas16.png
+%%DATADIR%%/images/wxsmith/wxGLCanvas32.png
+%%DATADIR%%/images/wxsmith/wxGauge16.png
+%%DATADIR%%/images/wxsmith/wxGauge32.png
+%%DATADIR%%/images/wxsmith/wxGenericDirCtrl16.png
+%%DATADIR%%/images/wxsmith/wxGenericDirCtrl32.png
+%%DATADIR%%/images/wxsmith/wxGrid16.png
+%%DATADIR%%/images/wxsmith/wxGrid32.png
+%%DATADIR%%/images/wxsmith/wxGridSizer16.png
+%%DATADIR%%/images/wxsmith/wxGridSizer32.png
+%%DATADIR%%/images/wxsmith/wxHtmlEasyPrinting16.png
+%%DATADIR%%/images/wxsmith/wxHtmlEasyPrinting32.png
+%%DATADIR%%/images/wxsmith/wxHtmlWindow16.png
+%%DATADIR%%/images/wxsmith/wxHtmlWindow32.png
+%%DATADIR%%/images/wxsmith/wxHyperlinkCtrl16.png
+%%DATADIR%%/images/wxsmith/wxHyperlinkCtrl32.png
+%%DATADIR%%/images/wxsmith/wxImage16.png
+%%DATADIR%%/images/wxsmith/wxImage32.png
+%%DATADIR%%/images/wxsmith/wxImageList16.png
+%%DATADIR%%/images/wxsmith/wxImageList32.png
+%%DATADIR%%/images/wxsmith/wxListBox16.png
+%%DATADIR%%/images/wxsmith/wxListBox32.png
+%%DATADIR%%/images/wxsmith/wxListCtrl16.png
+%%DATADIR%%/images/wxsmith/wxListCtrl32.png
+%%DATADIR%%/images/wxsmith/wxListView16.png
+%%DATADIR%%/images/wxsmith/wxListView32.png
+%%DATADIR%%/images/wxsmith/wxListbook16.png
+%%DATADIR%%/images/wxsmith/wxListbook32.png
+%%DATADIR%%/images/wxsmith/wxMediaCtrl16.png
+%%DATADIR%%/images/wxsmith/wxMediaCtrl32.png
+%%DATADIR%%/images/wxsmith/wxMenu16.png
+%%DATADIR%%/images/wxsmith/wxMenu32.png
+%%DATADIR%%/images/wxsmith/wxMenuBar16.png
+%%DATADIR%%/images/wxsmith/wxMenuBar32.png
+%%DATADIR%%/images/wxsmith/wxMenuItem16.png
+%%DATADIR%%/images/wxsmith/wxMenuItem32.png
+%%DATADIR%%/images/wxsmith/wxMessageDialog16.png
+%%DATADIR%%/images/wxsmith/wxMessageDialog32.png
+%%DATADIR%%/images/wxsmith/wxMultiChoiceDialog16.png
+%%DATADIR%%/images/wxsmith/wxMultiChoiceDialog32.png
+%%DATADIR%%/images/wxsmith/wxNotebook16.png
+%%DATADIR%%/images/wxsmith/wxNotebook32.png
+%%DATADIR%%/images/wxsmith/wxPageSetupDialog16.png
+%%DATADIR%%/images/wxsmith/wxPageSetupDialog32.png
+%%DATADIR%%/images/wxsmith/wxPanel16.png
+%%DATADIR%%/images/wxsmith/wxPanel32.png
+%%DATADIR%%/images/wxsmith/wxPasswordEntryDialog16.png
+%%DATADIR%%/images/wxsmith/wxPasswordEntryDialog32.png
+%%DATADIR%%/images/wxsmith/wxPrintDialog16.png
+%%DATADIR%%/images/wxsmith/wxPrintDialog32.png
+%%DATADIR%%/images/wxsmith/wxProgressDialog16.png
+%%DATADIR%%/images/wxsmith/wxProgressDialog32.png
+%%DATADIR%%/images/wxsmith/wxRadioBox16.png
+%%DATADIR%%/images/wxsmith/wxRadioBox32.png
+%%DATADIR%%/images/wxsmith/wxRadioButton16.png
+%%DATADIR%%/images/wxsmith/wxRadioButton32.png
+%%DATADIR%%/images/wxsmith/wxRichTextCtrl16.png
+%%DATADIR%%/images/wxsmith/wxRichTextCtrl32.png
+%%DATADIR%%/images/wxsmith/wxRichTextFormattingDialog16.png
+%%DATADIR%%/images/wxsmith/wxRichTextFormattingDialog32.png
+%%DATADIR%%/images/wxsmith/wxRichTextStyleComboCtrl16.png
+%%DATADIR%%/images/wxsmith/wxRichTextStyleComboCtrl32.png
+%%DATADIR%%/images/wxsmith/wxRichTextStyleListBox16.png
+%%DATADIR%%/images/wxsmith/wxRichTextStyleListBox32.png
+%%DATADIR%%/images/wxsmith/wxRichTextStyleListCtrl16.png
+%%DATADIR%%/images/wxsmith/wxRichTextStyleListCtrl32.png
+%%DATADIR%%/images/wxsmith/wxRichTextStyleOrganiserDialog16.png
+%%DATADIR%%/images/wxsmith/wxRichTextStyleOrganiserDialog32.png
+%%DATADIR%%/images/wxsmith/wxSashLayoutWindow16.png
+%%DATADIR%%/images/wxsmith/wxSashLayoutWindow32.png
+%%DATADIR%%/images/wxsmith/wxSashWindow16.png
+%%DATADIR%%/images/wxsmith/wxSashWindow32.png
+%%DATADIR%%/images/wxsmith/wxScrollBar16.png
+%%DATADIR%%/images/wxsmith/wxScrollBar32.png
+%%DATADIR%%/images/wxsmith/wxScrolledWindow16.png
+%%DATADIR%%/images/wxsmith/wxScrolledWindow32.png
+%%DATADIR%%/images/wxsmith/wxScrollingDialog16.png
+%%DATADIR%%/images/wxsmith/wxScrollingDialog32.png
+%%DATADIR%%/images/wxsmith/wxSearchCtrl16.png
+%%DATADIR%%/images/wxsmith/wxSearchCtrl32.png
+%%DATADIR%%/images/wxsmith/wxSimpleHtmlListBox16.png
+%%DATADIR%%/images/wxsmith/wxSimpleHtmlListBox32.png
+%%DATADIR%%/images/wxsmith/wxSingleChoiceDialog16.png
+%%DATADIR%%/images/wxsmith/wxSingleChoiceDialog32.png
+%%DATADIR%%/images/wxsmith/wxSingleInstanceChecker16.png
+%%DATADIR%%/images/wxsmith/wxSingleInstanceChecker32.png
+%%DATADIR%%/images/wxsmith/wxSlider16.png
+%%DATADIR%%/images/wxsmith/wxSlider32.png
+%%DATADIR%%/images/wxsmith/wxSmith16.png
+%%DATADIR%%/images/wxsmith/wxSmith32.png
+%%DATADIR%%/images/wxsmith/wxSpinButton16.png
+%%DATADIR%%/images/wxsmith/wxSpinButton32.png
+%%DATADIR%%/images/wxsmith/wxSpinCtrl16.png
+%%DATADIR%%/images/wxsmith/wxSpinCtrl32.png
+%%DATADIR%%/images/wxsmith/wxSplitterWindow16.png
+%%DATADIR%%/images/wxsmith/wxSplitterWindow32.png
+%%DATADIR%%/images/wxsmith/wxStaticBitmap16.png
+%%DATADIR%%/images/wxsmith/wxStaticBitmap32.png
+%%DATADIR%%/images/wxsmith/wxStaticBox16.png
+%%DATADIR%%/images/wxsmith/wxStaticBox32.png
+%%DATADIR%%/images/wxsmith/wxStaticBoxSizer16.png
+%%DATADIR%%/images/wxsmith/wxStaticBoxSizer32.png
+%%DATADIR%%/images/wxsmith/wxStaticLine16.png
+%%DATADIR%%/images/wxsmith/wxStaticLine32.png
+%%DATADIR%%/images/wxsmith/wxStaticText16.png
+%%DATADIR%%/images/wxsmith/wxStaticText32.png
+%%DATADIR%%/images/wxsmith/wxStatusBar16.png
+%%DATADIR%%/images/wxsmith/wxStatusBar32.png
+%%DATADIR%%/images/wxsmith/wxStdDialogButtonSizer16.png
+%%DATADIR%%/images/wxsmith/wxStdDialogButtonSizer32.png
+%%DATADIR%%/images/wxsmith/wxStopWatch16.png
+%%DATADIR%%/images/wxsmith/wxStopWatch32.png
+%%DATADIR%%/images/wxsmith/wxSymbolPickerDialog16.png
+%%DATADIR%%/images/wxsmith/wxSymbolPickerDialog32.png
+%%DATADIR%%/images/wxsmith/wxTextCtrl16.png
+%%DATADIR%%/images/wxsmith/wxTextCtrl32.png
+%%DATADIR%%/images/wxsmith/wxTextEntryDialog16.png
+%%DATADIR%%/images/wxsmith/wxTextEntryDialog32.png
+%%DATADIR%%/images/wxsmith/wxTimer16.png
+%%DATADIR%%/images/wxsmith/wxTimer32.png
+%%DATADIR%%/images/wxsmith/wxToggleButton16.png
+%%DATADIR%%/images/wxsmith/wxToggleButton32.png
+%%DATADIR%%/images/wxsmith/wxToolBar16.png
+%%DATADIR%%/images/wxsmith/wxToolBar32.png
+%%DATADIR%%/images/wxsmith/wxToolBarItem16.png
+%%DATADIR%%/images/wxsmith/wxToolBarItem32.png
+%%DATADIR%%/images/wxsmith/wxTreeCtrl16.png
+%%DATADIR%%/images/wxsmith/wxTreeCtrl32.png
+%%DATADIR%%/images/wxsmith/wxTreebook16.png
+%%DATADIR%%/images/wxsmith/wxTreebook32.png
+%%DATADIR%%/keybinder.zip
+%%DATADIR%%/lexers/lexer_A68k.sample
+%%DATADIR%%/lexers/lexer_A68k.xml
+%%DATADIR%%/lexers/lexer_OgreCompositor.sample
+%%DATADIR%%/lexers/lexer_OgreCompositor.xml
+%%DATADIR%%/lexers/lexer_OgreMaterial.sample
+%%DATADIR%%/lexers/lexer_OgreMaterial.xml
+%%DATADIR%%/lexers/lexer_ada.sample
+%%DATADIR%%/lexers/lexer_ada.xml
+%%DATADIR%%/lexers/lexer_angelscript.sample
+%%DATADIR%%/lexers/lexer_angelscript.xml
+%%DATADIR%%/lexers/lexer_autotools.sample
+%%DATADIR%%/lexers/lexer_autotools.xml
+%%DATADIR%%/lexers/lexer_bash.sample
+%%DATADIR%%/lexers/lexer_bash.xml
+%%DATADIR%%/lexers/lexer_batch.sample
+%%DATADIR%%/lexers/lexer_batch.xml
+%%DATADIR%%/lexers/lexer_bibtex.sample
+%%DATADIR%%/lexers/lexer_bibtex.xml
+%%DATADIR%%/lexers/lexer_caml.sample
+%%DATADIR%%/lexers/lexer_caml.xml
+%%DATADIR%%/lexers/lexer_cg.sample
+%%DATADIR%%/lexers/lexer_cg.xml
+%%DATADIR%%/lexers/lexer_cmake.sample
+%%DATADIR%%/lexers/lexer_cmake.xml
+%%DATADIR%%/lexers/lexer_coffee.sample
+%%DATADIR%%/lexers/lexer_coffee.xml
+%%DATADIR%%/lexers/lexer_cpp.sample
+%%DATADIR%%/lexers/lexer_cpp.xml
+%%DATADIR%%/lexers/lexer_css.sample
+%%DATADIR%%/lexers/lexer_css.xml
+%%DATADIR%%/lexers/lexer_cu.sample
+%%DATADIR%%/lexers/lexer_cu.xml
+%%DATADIR%%/lexers/lexer_d.sample
+%%DATADIR%%/lexers/lexer_d.xml
+%%DATADIR%%/lexers/lexer_diff.sample
+%%DATADIR%%/lexers/lexer_diff.xml
+%%DATADIR%%/lexers/lexer_f77.sample
+%%DATADIR%%/lexers/lexer_f77.xml
+%%DATADIR%%/lexers/lexer_fortran.sample
+%%DATADIR%%/lexers/lexer_fortran.xml
+%%DATADIR%%/lexers/lexer_glsl.sample
+%%DATADIR%%/lexers/lexer_glsl.xml
+%%DATADIR%%/lexers/lexer_gm.sample
+%%DATADIR%%/lexers/lexer_gm.xml
+%%DATADIR%%/lexers/lexer_haskell.sample
+%%DATADIR%%/lexers/lexer_haskell.xml
+%%DATADIR%%/lexers/lexer_hitasm.sample
+%%DATADIR%%/lexers/lexer_hitasm.xml
+%%DATADIR%%/lexers/lexer_html.sample
+%%DATADIR%%/lexers/lexer_html.xml
+%%DATADIR%%/lexers/lexer_ihex.sample
+%%DATADIR%%/lexers/lexer_ihex.xml
+%%DATADIR%%/lexers/lexer_inno.sample
+%%DATADIR%%/lexers/lexer_inno.xml
+%%DATADIR%%/lexers/lexer_java.sample
+%%DATADIR%%/lexers/lexer_java.xml
+%%DATADIR%%/lexers/lexer_javascript.sample
+%%DATADIR%%/lexers/lexer_javascript.xml
+%%DATADIR%%/lexers/lexer_latex.sample
+%%DATADIR%%/lexers/lexer_latex.xml
+%%DATADIR%%/lexers/lexer_lisp.sample
+%%DATADIR%%/lexers/lexer_lisp.xml
+%%DATADIR%%/lexers/lexer_lua.sample
+%%DATADIR%%/lexers/lexer_lua.xml
+%%DATADIR%%/lexers/lexer_make.sample
+%%DATADIR%%/lexers/lexer_make.xml
+%%DATADIR%%/lexers/lexer_masm.sample
+%%DATADIR%%/lexers/lexer_masm.xml
+%%DATADIR%%/lexers/lexer_matlab.sample
+%%DATADIR%%/lexers/lexer_matlab.xml
+%%DATADIR%%/lexers/lexer_nsis.sample
+%%DATADIR%%/lexers/lexer_nsis.xml
+%%DATADIR%%/lexers/lexer_objc.sample
+%%DATADIR%%/lexers/lexer_objc.xml
+%%DATADIR%%/lexers/lexer_pascal.sample
+%%DATADIR%%/lexers/lexer_pascal.xml
+%%DATADIR%%/lexers/lexer_perl.sample
+%%DATADIR%%/lexers/lexer_perl.xml
+%%DATADIR%%/lexers/lexer_postscript.sample
+%%DATADIR%%/lexers/lexer_postscript.xml
+%%DATADIR%%/lexers/lexer_prg.sample
+%%DATADIR%%/lexers/lexer_prg.xml
+%%DATADIR%%/lexers/lexer_properties.sample
+%%DATADIR%%/lexers/lexer_properties.xml
+%%DATADIR%%/lexers/lexer_proto.xml
+%%DATADIR%%/lexers/lexer_python.sample
+%%DATADIR%%/lexers/lexer_python.xml
+%%DATADIR%%/lexers/lexer_rc.sample
+%%DATADIR%%/lexers/lexer_rc.xml
+%%DATADIR%%/lexers/lexer_registry.sample
+%%DATADIR%%/lexers/lexer_registry.xml
+%%DATADIR%%/lexers/lexer_ruby.sample
+%%DATADIR%%/lexers/lexer_ruby.xml
+%%DATADIR%%/lexers/lexer_smalltalk.sample
+%%DATADIR%%/lexers/lexer_smalltalk.xml
+%%DATADIR%%/lexers/lexer_sql.sample
+%%DATADIR%%/lexers/lexer_sql.xml
+%%DATADIR%%/lexers/lexer_squirrel.sample
+%%DATADIR%%/lexers/lexer_squirrel.xml
+%%DATADIR%%/lexers/lexer_srec.sample
+%%DATADIR%%/lexers/lexer_srec.xml
+%%DATADIR%%/lexers/lexer_tehex.sample
+%%DATADIR%%/lexers/lexer_tehex.xml
+%%DATADIR%%/lexers/lexer_vbscript.sample
+%%DATADIR%%/lexers/lexer_vbscript.xml
+%%DATADIR%%/lexers/lexer_verilog.sample
+%%DATADIR%%/lexers/lexer_verilog.xml
+%%DATADIR%%/lexers/lexer_vhdl.sample
+%%DATADIR%%/lexers/lexer_vhdl.xml
+%%DATADIR%%/lexers/lexer_xml.sample
+%%DATADIR%%/lexers/lexer_xml.xml
+%%DATADIR%%/lib_finder.zip
+%%DATADIR%%/lib_finder/codeblocks_sdk.xml
+%%DATADIR%%/lib_finder/glfw.xml
+%%DATADIR%%/lib_finder/wxwidgets.xml
+%%DATADIR%%/manager_resources.zip
+%%DATADIR%%/occurrenceshighlighting.zip
+%%DATADIR%%/openfileslist.zip
+%%DATADIR%%/projectsimporter.zip
+%%DATADIR%%/resources.zip
+%%DATADIR%%/scriptedwizard.zip
+%%DATADIR%%/scripts/edit_startup_script.script
+%%DATADIR%%/scripts/gdb_types.script
+%%DATADIR%%/scripts/make_dist.script
+%%DATADIR%%/scripts/plugin_find_broken_files.script
+%%DATADIR%%/scripts/sample_plugin.script
+%%DATADIR%%/scripts/startup.script
+%%DATADIR%%/scripts/stl-views-1.0.3.gdb
+%%DATADIR%%/scripts/tests/menu_test_plugin.script
+%%DATADIR%%/scripts/tests/script_test_plugin.script
+%%DATADIR%%/scripts/tests/test_base.script
+%%DATADIR%%/scripts/tests/user_dialog_test_plugin.script
+%%DATADIR%%/scripts/tests/wx_test.script
+%%DATADIR%%/scripts/wx_help.script
+%%DATADIR%%/start_here.zip
+%%DATADIR%%/templates/console-main-c.cpp
+%%DATADIR%%/templates/console-main-cpp.cpp
+%%DATADIR%%/templates/console.cbp
+%%DATADIR%%/templates/console.png
+%%DATADIR%%/templates/console.template
+%%DATADIR%%/templates/dll.png
+%%DATADIR%%/templates/glfw-main.cpp
+%%DATADIR%%/templates/glfw-static.cbp
+%%DATADIR%%/templates/glfw.png
+%%DATADIR%%/templates/glfw.template
+%%DATADIR%%/templates/glut-main.cpp
+%%DATADIR%%/templates/glut.png
+%%DATADIR%%/templates/irr_linux.cbp
+%%DATADIR%%/templates/irr_main.cpp
+%%DATADIR%%/templates/irrlicht.png
+%%DATADIR%%/templates/irrlicht.template
+%%DATADIR%%/templates/ogre-main.cpp
+%%DATADIR%%/templates/ogre.template
+%%DATADIR%%/templates/ogre_linux.cbp
+%%DATADIR%%/templates/ogrelogo.png
+%%DATADIR%%/templates/qt-main.cpp
+%%DATADIR%%/templates/qt.cbp
+%%DATADIR%%/templates/qt.template
+%%DATADIR%%/templates/qtlogo32.png
+%%DATADIR%%/templates/sdccapp-main.c
+%%DATADIR%%/templates/sdccapp.cbp
+%%DATADIR%%/templates/sdccapp.png
+%%DATADIR%%/templates/sdccapp.template
+%%DATADIR%%/templates/sdl-cb.bmp
+%%DATADIR%%/templates/sdl-main.cpp
+%%DATADIR%%/templates/sdl.png
+%%DATADIR%%/templates/sdlapp.cbp
+%%DATADIR%%/templates/sdlapp.template
+%%DATADIR%%/templates/sfml-cb.bmp
+%%DATADIR%%/templates/sfml-main.cpp
+%%DATADIR%%/templates/sfml.cbp
+%%DATADIR%%/templates/sfml.png
+%%DATADIR%%/templates/sfml.template
+%%DATADIR%%/templates/sharedlib-sample.c
+%%DATADIR%%/templates/sharedlib.cbp
+%%DATADIR%%/templates/sharedlib.template
+%%DATADIR%%/templates/staticlib-sample.c
+%%DATADIR%%/templates/staticlib.cbp
+%%DATADIR%%/templates/staticlib.template
+%%DATADIR%%/templates/wizard/arduino/files/cores/CDC.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/HID.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/HardwareSerial.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/IPAddress.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/Print.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/Stream.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/Tone.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/USBCore.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/WInterrupts.c
+%%DATADIR%%/templates/wizard/arduino/files/cores/WMath.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/WString.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/libraries.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/main.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/new.cpp
+%%DATADIR%%/templates/wizard/arduino/files/cores/wiring.c
+%%DATADIR%%/templates/wizard/arduino/files/cores/wiring_analog.c
+%%DATADIR%%/templates/wizard/arduino/files/cores/wiring_digital.c
+%%DATADIR%%/templates/wizard/arduino/files/cores/wiring_pulse.c
+%%DATADIR%%/templates/wizard/arduino/files/cores/wiring_shift.c
+%%DATADIR%%/templates/wizard/arduino/files/sketch.cpp
+%%DATADIR%%/templates/wizard/arduino/logo.png
+%%DATADIR%%/templates/wizard/arduino/wizard.png
+%%DATADIR%%/templates/wizard/arduino/wizard.script
+%%DATADIR%%/templates/wizard/arm/files/ARM-eval7t/h/evaluator7t.h
+%%DATADIR%%/templates/wizard/arm/files/ARM-eval7t/ld/target.ld
+%%DATADIR%%/templates/wizard/arm/files/ARM-eval7t/src/main.c
+%%DATADIR%%/templates/wizard/arm/files/ARM-eval7t/src/vectors.S
+%%DATADIR%%/templates/wizard/arm/files/ek-at91sam7a3/h/at91sam7a3.h
+%%DATADIR%%/templates/wizard/arm/files/ek-at91sam7a3/h/sam7a3ek.h
+%%DATADIR%%/templates/wizard/arm/files/ek-at91sam7a3/ld/target.ld
+%%DATADIR%%/templates/wizard/arm/files/ek-at91sam7a3/ld/targetRAM.ld
+%%DATADIR%%/templates/wizard/arm/files/ek-at91sam7a3/src/main.c
+%%DATADIR%%/templates/wizard/arm/files/ek-at91sam7a3/src/vectors.S
+%%DATADIR%%/templates/wizard/arm/files/lpd-lh7a404/h/arm9_mm.h
+%%DATADIR%%/templates/wizard/arm/files/lpd-lh7a404/h/lh7a404.h
+%%DATADIR%%/templates/wizard/arm/files/lpd-lh7a404/h/lpd404.h
+%%DATADIR%%/templates/wizard/arm/files/lpd-lh7a404/ld/target.ld
+%%DATADIR%%/templates/wizard/arm/files/lpd-lh7a404/src/lh7a404_mm.c
+%%DATADIR%%/templates/wizard/arm/files/lpd-lh7a404/src/main.c
+%%DATADIR%%/templates/wizard/arm/files/lpd-lh7a404/src/vectors.S
+%%DATADIR%%/templates/wizard/arm/files/olimex-at91sam7sx/h/at91sam7sx.h
+%%DATADIR%%/templates/wizard/arm/files/olimex-at91sam7sx/h/sam7p64.h
+%%DATADIR%%/templates/wizard/arm/files/olimex-at91sam7sx/ld/target_s128.ld
+%%DATADIR%%/templates/wizard/arm/files/olimex-at91sam7sx/ld/target_s256.ld
+%%DATADIR%%/templates/wizard/arm/files/olimex-at91sam7sx/ld/target_s32.ld
+%%DATADIR%%/templates/wizard/arm/files/olimex-at91sam7sx/ld/target_s64.ld
+%%DATADIR%%/templates/wizard/arm/files/olimex-at91sam7sx/src/main.c
+%%DATADIR%%/templates/wizard/arm/files/olimex-at91sam7sx/src/vectors.S
+%%DATADIR%%/templates/wizard/arm/files/olimex-lpc213x/h/lpc-p2138.h
+%%DATADIR%%/templates/wizard/arm/files/olimex-lpc213x/h/lpc213x.h
+%%DATADIR%%/templates/wizard/arm/files/olimex-lpc213x/ld/target_2132.ld
+%%DATADIR%%/templates/wizard/arm/files/olimex-lpc213x/ld/target_2134.ld
+%%DATADIR%%/templates/wizard/arm/files/olimex-lpc213x/ld/target_2136.ld
+%%DATADIR%%/templates/wizard/arm/files/olimex-lpc213x/ld/target_2138.ld
+%%DATADIR%%/templates/wizard/arm/files/olimex-lpc213x/src/main.c
+%%DATADIR%%/templates/wizard/arm/files/olimex-lpc213x/src/vectors.S
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-AT91M55800/h/at91m55800.h
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-AT91M55800/ld/target.ld
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-AT91M55800/ld/targetRAM_1MB.ld
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-AT91M55800/ld/targetRAM_512kB.ld
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-AT91M55800/ld/targetROM.ld
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-AT91M55800/src/main.c
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-AT91M55800/src/vectors.S
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-LPC2294/h/lpc2294.h
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-LPC2294/ld/target.ld
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-LPC2294/ld/targetRAM_1MB.ld
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-LPC2294/ld/targetROM.ld
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-LPC2294/src/main.c
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-LPC2294/src/vectors.S
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-PXA255/h/pxa255regs.h
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-PXA255/h/pxa_mm.h
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-PXA255/ld/target.ld
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-PXA255/src/irq.c
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-PXA255/src/main.c
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-PXA255/src/pxa_mm.c
+%%DATADIR%%/templates/wizard/arm/files/phyCORE-PXA255/src/vectors.S
+%%DATADIR%%/templates/wizard/arm/logo.png
+%%DATADIR%%/templates/wizard/arm/wizard.png
+%%DATADIR%%/templates/wizard/arm/wizard.script
+%%DATADIR%%/templates/wizard/avr/files/FuseExt.c
+%%DATADIR%%/templates/wizard/avr/files/FuseFuse0to4.c
+%%DATADIR%%/templates/wizard/avr/files/FuseHigh.c
+%%DATADIR%%/templates/wizard/avr/files/FuseLow.c
+%%DATADIR%%/templates/wizard/avr/files/main.c
+%%DATADIR%%/templates/wizard/avr/logo.png
+%%DATADIR%%/templates/wizard/avr/wizard.png
+%%DATADIR%%/templates/wizard/avr/wizard.script
+%%DATADIR%%/templates/wizard/avr/wizard.xrc
+%%DATADIR%%/templates/wizard/c_file/logo.png
+%%DATADIR%%/templates/wizard/c_file/wizard.png
+%%DATADIR%%/templates/wizard/c_file/wizard.script
+%%DATADIR%%/templates/wizard/common_functions.script
+%%DATADIR%%/templates/wizard/config.script
+%%DATADIR%%/templates/wizard/console/c/main.c
+%%DATADIR%%/templates/wizard/console/cpp/main.cpp
+%%DATADIR%%/templates/wizard/console/logo.png
+%%DATADIR%%/templates/wizard/console/wizard.png
+%%DATADIR%%/templates/wizard/console/wizard.script
+%%DATADIR%%/templates/wizard/d/console/hello.d
+%%DATADIR%%/templates/wizard/d/logo.png
+%%DATADIR%%/templates/wizard/d/wizard.png
+%%DATADIR%%/templates/wizard/d/wizard.script
+%%DATADIR%%/templates/wizard/d_source/logo.png
+%%DATADIR%%/templates/wizard/d_source/wizard.png
+%%DATADIR%%/templates/wizard/d_source/wizard.script
+%%DATADIR%%/templates/wizard/directx/dx8/main.cpp
+%%DATADIR%%/templates/wizard/directx/dx9/main.cpp
+%%DATADIR%%/templates/wizard/directx/logo.png
+%%DATADIR%%/templates/wizard/directx/wizard.png
+%%DATADIR%%/templates/wizard/directx/wizard.script
+%%DATADIR%%/templates/wizard/dll/files/main.cpp
+%%DATADIR%%/templates/wizard/dll/files/main.h
+%%DATADIR%%/templates/wizard/dll/logo.png
+%%DATADIR%%/templates/wizard/dll/wizard.png
+%%DATADIR%%/templates/wizard/dll/wizard.script
+%%DATADIR%%/templates/wizard/empty/logo.png
+%%DATADIR%%/templates/wizard/empty/wizard.png
+%%DATADIR%%/templates/wizard/empty/wizard.script
+%%DATADIR%%/templates/wizard/empty_file/logo.png
+%%DATADIR%%/templates/wizard/empty_file/wizard.png
+%%DATADIR%%/templates/wizard/empty_file/wizard.script
+%%DATADIR%%/templates/wizard/fltk/files/main.cpp
+%%DATADIR%%/templates/wizard/fltk/fluid/main.cpp
+%%DATADIR%%/templates/wizard/fltk/fluid/main.fld
+%%DATADIR%%/templates/wizard/fltk/fluid/main.h
+%%DATADIR%%/templates/wizard/fltk/logo.png
+%%DATADIR%%/templates/wizard/fltk/wizard.png
+%%DATADIR%%/templates/wizard/fltk/wizard.script
+%%DATADIR%%/templates/wizard/fortran/app/files/main.f95
+%%DATADIR%%/templates/wizard/fortran/app/logo.png
+%%DATADIR%%/templates/wizard/fortran/app/wizard.png
+%%DATADIR%%/templates/wizard/fortran/app/wizard.script
+%%DATADIR%%/templates/wizard/fortran/dll/files/main.f95
+%%DATADIR%%/templates/wizard/fortran/dll/logo.png
+%%DATADIR%%/templates/wizard/fortran/dll/wizard.png
+%%DATADIR%%/templates/wizard/fortran/dll/wizard.script
+%%DATADIR%%/templates/wizard/fortran/file/logo.png
+%%DATADIR%%/templates/wizard/fortran/file/wizard.png
+%%DATADIR%%/templates/wizard/fortran/file/wizard.script
+%%DATADIR%%/templates/wizard/fortran/lib/files/main.f95
+%%DATADIR%%/templates/wizard/fortran/lib/logo.png
+%%DATADIR%%/templates/wizard/fortran/lib/wizard.png
+%%DATADIR%%/templates/wizard/fortran/lib/wizard.script
+%%DATADIR%%/templates/wizard/glfw/files/main.cpp
+%%DATADIR%%/templates/wizard/glfw/logo.png
+%%DATADIR%%/templates/wizard/glfw/wizard.png
+%%DATADIR%%/templates/wizard/glfw/wizard.script
+%%DATADIR%%/templates/wizard/glut/files/main.cpp
+%%DATADIR%%/templates/wizard/glut/logo.png
+%%DATADIR%%/templates/wizard/glut/wizard.png
+%%DATADIR%%/templates/wizard/glut/wizard.script
+%%DATADIR%%/templates/wizard/gtk/files/main.c
+%%DATADIR%%/templates/wizard/gtk/logo.png
+%%DATADIR%%/templates/wizard/gtk/wizard.png
+%%DATADIR%%/templates/wizard/gtk/wizard.script
+%%DATADIR%%/templates/wizard/h_file/logo.png
+%%DATADIR%%/templates/wizard/h_file/wizard.png
+%%DATADIR%%/templates/wizard/h_file/wizard.script
+%%DATADIR%%/templates/wizard/irrlicht/files/main.cpp
+%%DATADIR%%/templates/wizard/irrlicht/logo.png
+%%DATADIR%%/templates/wizard/irrlicht/wizard.png
+%%DATADIR%%/templates/wizard/irrlicht/wizard.script
+%%DATADIR%%/templates/wizard/java/file/logo.png
+%%DATADIR%%/templates/wizard/java/file/wizard.png
+%%DATADIR%%/templates/wizard/java/file/wizard.script
+%%DATADIR%%/templates/wizard/java/files/Main.java
+%%DATADIR%%/templates/wizard/java/logo.png
+%%DATADIR%%/templates/wizard/java/wizard.png
+%%DATADIR%%/templates/wizard/java/wizard.script
+%%DATADIR%%/templates/wizard/lf/files/quick/main.cpp
+%%DATADIR%%/templates/wizard/lf/files/structured/CMain.cpp
+%%DATADIR%%/templates/wizard/lf/files/structured/CMain.h
+%%DATADIR%%/templates/wizard/lf/files/structured/main.cpp
+%%DATADIR%%/templates/wizard/lf/logo.png
+%%DATADIR%%/templates/wizard/lf/wizard.png
+%%DATADIR%%/templates/wizard/lf/wizard.script
+%%DATADIR%%/templates/wizard/lf/wizard.xrc
+%%DATADIR%%/templates/wizard/matlab_csf/files/mexversion.rc
+%%DATADIR%%/templates/wizard/matlab_csf/files/sfuntmpl.c
+%%DATADIR%%/templates/wizard/matlab_csf/lccstub/lccstub.c
+%%DATADIR%%/templates/wizard/matlab_csf/logo.png
+%%DATADIR%%/templates/wizard/matlab_csf/wizard.png
+%%DATADIR%%/templates/wizard/matlab_csf/wizard.script
+%%DATADIR%%/templates/wizard/matlab_csf/wizard.xrc
+%%DATADIR%%/templates/wizard/mcs51/files/main.c
+%%DATADIR%%/templates/wizard/mcs51/logo.png
+%%DATADIR%%/templates/wizard/mcs51/wizard.png
+%%DATADIR%%/templates/wizard/mcs51/wizard.script
+%%DATADIR%%/templates/wizard/mcs51/wizard.xrc
+%%DATADIR%%/templates/wizard/msp430/files/main.c
+%%DATADIR%%/templates/wizard/msp430/logo.png
+%%DATADIR%%/templates/wizard/msp430/wizard.png
+%%DATADIR%%/templates/wizard/msp430/wizard.script
+%%DATADIR%%/templates/wizard/msp430/wizard.xrc
+%%DATADIR%%/templates/wizard/ogre/files/main.cpp
+%%DATADIR%%/templates/wizard/ogre/logo.png
+%%DATADIR%%/templates/wizard/ogre/wizard.png
+%%DATADIR%%/templates/wizard/ogre/wizard.script
+%%DATADIR%%/templates/wizard/opencv/files/arnold_schwarzenegger.jpg
+%%DATADIR%%/templates/wizard/opencv/files/main.cpp
+%%DATADIR%%/templates/wizard/opencv/logo.png
+%%DATADIR%%/templates/wizard/opencv/wizard.png
+%%DATADIR%%/templates/wizard/opencv/wizard.script
+%%DATADIR%%/templates/wizard/opencv/wizard.xrc
+%%DATADIR%%/templates/wizard/opengl/files_unix/main.c
+%%DATADIR%%/templates/wizard/opengl/files_win/main.c
+%%DATADIR%%/templates/wizard/opengl/logo.png
+%%DATADIR%%/templates/wizard/opengl/wizard.png
+%%DATADIR%%/templates/wizard/opengl/wizard.script
+%%DATADIR%%/templates/wizard/plugins/logo.png
+%%DATADIR%%/templates/wizard/plugins/templates/generic_template.cpp
+%%DATADIR%%/templates/wizard/plugins/templates/generic_template.h
+%%DATADIR%%/templates/wizard/plugins/templates/manifest_template.xml
+%%DATADIR%%/templates/wizard/plugins/templates/mime_template.cpp
+%%DATADIR%%/templates/wizard/plugins/templates/mime_template.h
+%%DATADIR%%/templates/wizard/plugins/templates/tool_template.cpp
+%%DATADIR%%/templates/wizard/plugins/templates/tool_template.h
+%%DATADIR%%/templates/wizard/plugins/templates/wizard_template.cpp
+%%DATADIR%%/templates/wizard/plugins/templates/wizard_template.h
+%%DATADIR%%/templates/wizard/plugins/wizard.png
+%%DATADIR%%/templates/wizard/plugins/wizard.script
+%%DATADIR%%/templates/wizard/plugins/wizard.xrc
+%%DATADIR%%/templates/wizard/ppc/files/MPC5200/h/mpc5200.h
+%%DATADIR%%/templates/wizard/ppc/files/MPC5200/ld/target.ld
+%%DATADIR%%/templates/wizard/ppc/files/MPC5200/src/crt0.S
+%%DATADIR%%/templates/wizard/ppc/files/MPC5200/src/main.c
+%%DATADIR%%/templates/wizard/ppc/files/MPC5200/src/traptable.S
+%%DATADIR%%/templates/wizard/ppc/files/MPC565/h/mpc555.h
+%%DATADIR%%/templates/wizard/ppc/files/MPC565/ld/target.ld
+%%DATADIR%%/templates/wizard/ppc/files/MPC565/src/crt0.S
+%%DATADIR%%/templates/wizard/ppc/files/MPC565/src/main.c
+%%DATADIR%%/templates/wizard/ppc/logo.png
+%%DATADIR%%/templates/wizard/ppc/wizard.png
+%%DATADIR%%/templates/wizard/ppc/wizard.script
+%%DATADIR%%/templates/wizard/qt4/files/main.cpp
+%%DATADIR%%/templates/wizard/qt4/logo.png
+%%DATADIR%%/templates/wizard/qt4/wizard.png
+%%DATADIR%%/templates/wizard/qt4/wizard.script
+%%DATADIR%%/templates/wizard/qt4dll/files/main.cpp
+%%DATADIR%%/templates/wizard/qt4dll/logo.png
+%%DATADIR%%/templates/wizard/qt4dll/wizard.png
+%%DATADIR%%/templates/wizard/qt4dll/wizard.script
+%%DATADIR%%/templates/wizard/qt5/files/main.cpp
+%%DATADIR%%/templates/wizard/qt5/logo.png
+%%DATADIR%%/templates/wizard/qt5/wizard.png
+%%DATADIR%%/templates/wizard/qt5/wizard.script
+%%DATADIR%%/templates/wizard/sdl/files/main.cpp
+%%DATADIR%%/templates/wizard/sdl/logo.png
+%%DATADIR%%/templates/wizard/sdl/wizard.png
+%%DATADIR%%/templates/wizard/sdl/wizard.script
+%%DATADIR%%/templates/wizard/sdl2/files/main.cpp
+%%DATADIR%%/templates/wizard/sdl2/logo.png
+%%DATADIR%%/templates/wizard/sdl2/wizard.png
+%%DATADIR%%/templates/wizard/sdl2/wizard.script
+%%DATADIR%%/templates/wizard/sfml/logo.png
+%%DATADIR%%/templates/wizard/sfml/sfml1/cb.bmp
+%%DATADIR%%/templates/wizard/sfml/sfml1/main.cpp
+%%DATADIR%%/templates/wizard/sfml/sfml2/cb.bmp
+%%DATADIR%%/templates/wizard/sfml/sfml2/main.cpp
+%%DATADIR%%/templates/wizard/sfml/wizard.png
+%%DATADIR%%/templates/wizard/sfml/wizard.script
+%%DATADIR%%/templates/wizard/sharedlib/c/main.c
+%%DATADIR%%/templates/wizard/sharedlib/cpp/main.cpp
+%%DATADIR%%/templates/wizard/sharedlib/logo.png
+%%DATADIR%%/templates/wizard/sharedlib/wizard.png
+%%DATADIR%%/templates/wizard/sharedlib/wizard.script
+%%DATADIR%%/templates/wizard/smartwin/files/main.cpp
+%%DATADIR%%/templates/wizard/smartwin/logo.png
+%%DATADIR%%/templates/wizard/smartwin/wizard.png
+%%DATADIR%%/templates/wizard/smartwin/wizard.script
+%%DATADIR%%/templates/wizard/staticlib/files/main.c
+%%DATADIR%%/templates/wizard/staticlib/logo.png
+%%DATADIR%%/templates/wizard/staticlib/wizard.png
+%%DATADIR%%/templates/wizard/staticlib/wizard.script
+%%DATADIR%%/templates/wizard/stlport/files/main.cpp
+%%DATADIR%%/templates/wizard/stlport/logo.png
+%%DATADIR%%/templates/wizard/stlport/wizard.png
+%%DATADIR%%/templates/wizard/stlport/wizard.script
+%%DATADIR%%/templates/wizard/sys/files/driver.c
+%%DATADIR%%/templates/wizard/sys/logo.png
+%%DATADIR%%/templates/wizard/sys/wizard.png
+%%DATADIR%%/templates/wizard/sys/wizard.script
+%%DATADIR%%/templates/wizard/tricore/logo.png
+%%DATADIR%%/templates/wizard/tricore/templates/EasyKit-TC1767/target.ld
+%%DATADIR%%/templates/wizard/tricore/templates/EasyKit-TC1767/targetIntResources.ld
+%%DATADIR%%/templates/wizard/tricore/templates/EasyRun-TC1796/h/easyrun_setup.h
+%%DATADIR%%/templates/wizard/tricore/templates/EasyRun-TC1796/memoryROM.x
+%%DATADIR%%/templates/wizard/tricore/templates/EasyRun-TC1796/src/setup.c
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1130/h/triboard_setup.h
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1130/memoryROM.x
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1130/src/setup.c
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1161/target.ld
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1161/targetIntResources.ld
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1162/target.ld
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1162/targetIntResources.ld
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1762/target.ld
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1762/targetIntResources.ld
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1765/h/triboard_setup.h
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1765/memoryROM.x
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1765/src/setup.c
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1766/target.ld
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1766/targetIntResources.ld
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1775/h/triboard_setup.h
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1775/memoryROM.x
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1775/src/setup.c
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1792/h/triboard_setup.h
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1792/memoryROM-intern.x
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1792/memoryROM.x
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1792/src/setup.c
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1796/h/triboard_setup.h
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1796/memoryROM-intern.x
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1796/memoryROM.x
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1796/src/setup.c
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1797/h/triboard_setup.h
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1797/memoryROM-intern.x
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1797/memoryROM.x
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1797/src/setup.c
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1920/h/triboard_setup.h
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1920/memoryROM.x
+%%DATADIR%%/templates/wizard/tricore/templates/TriBoard-TC1920/src/setup.c
+%%DATADIR%%/templates/wizard/tricore/templates/main.c
+%%DATADIR%%/templates/wizard/tricore/templates/phyCORE-TC1130/h/phycore_setup.h
+%%DATADIR%%/templates/wizard/tricore/templates/phyCORE-TC1130/memoryROM.x
+%%DATADIR%%/templates/wizard/tricore/templates/phyCORE-TC1130/src/setup.c
+%%DATADIR%%/templates/wizard/tricore/templates/phyCORE-TC1775/h/phycore_setup.h
+%%DATADIR%%/templates/wizard/tricore/templates/phyCORE-TC1775/memoryROM.x
+%%DATADIR%%/templates/wizard/tricore/templates/phyCORE-TC1775/src/setup.c
+%%DATADIR%%/templates/wizard/tricore/wizard.png
+%%DATADIR%%/templates/wizard/tricore/wizard.script
+%%DATADIR%%/templates/wizard/tricore/wizard.xrc
+%%DATADIR%%/templates/wizard/win32gui/files/dialog/main.cpp
+%%DATADIR%%/templates/wizard/win32gui/files/dialog/manifest.xml
+%%DATADIR%%/templates/wizard/win32gui/files/dialog/resource.h
+%%DATADIR%%/templates/wizard/win32gui/files/dialog/resource.rc
+%%DATADIR%%/templates/wizard/win32gui/files/frame/main.cpp
+%%DATADIR%%/templates/wizard/win32gui/logo.png
+%%DATADIR%%/templates/wizard/win32gui/wizard.png
+%%DATADIR%%/templates/wizard/win32gui/wizard.script
+%%DATADIR%%/templates/wizard/wxwidgets/common/app.cpp
+%%DATADIR%%/templates/wizard/wxwidgets/common/app.h
+%%DATADIR%%/templates/wizard/wxwidgets/common/main.cpp
+%%DATADIR%%/templates/wizard/wxwidgets/common/main.h
+%%DATADIR%%/templates/wizard/wxwidgets/logo.png
+%%DATADIR%%/templates/wizard/wxwidgets/pch/wx_pch.h
+%%DATADIR%%/templates/wizard/wxwidgets/rc/resource.rc
+%%DATADIR%%/templates/wizard/wxwidgets/wizard.png
+%%DATADIR%%/templates/wizard/wxwidgets/wizard.script
+%%DATADIR%%/templates/wizard/wxwidgets/wizard.xrc
+%%DATADIR%%/templates/wizard/wxwidgets/wxfb/dialog/GUIDialog.cpp
+%%DATADIR%%/templates/wizard/wxwidgets/wxfb/dialog/GUIDialog.h
+%%DATADIR%%/templates/wizard/wxwidgets/wxfb/dialog/WxWizDialog.fbp
+%%DATADIR%%/templates/wizard/wxwidgets/wxfb/frame/GUIFrame.cpp
+%%DATADIR%%/templates/wizard/wxwidgets/wxfb/frame/GUIFrame.h
+%%DATADIR%%/templates/wizard/wxwidgets/wxfb/frame/WxWizFrame.fbp
+%%DATADIR%%/templates/wizard/wxwidgets/wxsmith/app.cpp
+%%DATADIR%%/templates/wizard/wxwidgets/wxsmith/main.cpp
+%%DATADIR%%/templates/wizard/wxwidgets/wxsmith/main.h
+%%DATADIR%%/templates/wizard/wxwidgets/wxsmith/resource.wxs
+%%DATADIR%%/templates/wx-app-ash.cpp
+%%DATADIR%%/templates/wx-app-ash.h
+%%DATADIR%%/templates/wx-main-ash.cpp
+%%DATADIR%%/templates/wx-main-ash.h
+%%DATADIR%%/templates/wx-main-s.cpp
+%%DATADIR%%/templates/wx-main-sh.cpp
+%%DATADIR%%/templates/wx-main-sh.h
+%%DATADIR%%/templates/wx_pch.h
+%%DATADIR%%/templates/wxwidgets.cbp
+%%DATADIR%%/templates/wxwidgets.png
+%%DATADIR%%/templates/wxwidgets.template
+%%DATADIR%%/tips.txt
+%%DATADIR%%/todo.zip
+%%DATADIR%%/wxSmithAui.zip
+%%DATADIR%%/wxsmith.zip
+%%DATADIR%%/wxsmithcontribitems.zip
+share/icons/hicolor/48x48/mimetypes/application-x-codeblocks-workspace.png
+share/icons/hicolor/48x48/mimetypes/application-x-codeblocks.png
+share/mime/packages/codeblocks.xml
+share/pixmaps/codeblocks.png