Monday, August 17, 2009

MinGW: Building wxMSW 2.8.11

WxWidgets library provides cross-platform widget classes that work well on top of most other widgets available. wxWidgets comes in many flavors: wxMSW, wxGTK, wxMac, etc. Among them, I'm most interested in wxMSW and wxGTK because they are the ones that work on my computers. Today I am venturing into compiling wxMSW with MinGW.



Compiling wxMSW dependencies


wxWidgets makes use of some libraries if they are available on the system. Namely, they are zlib, png, jpeg, tiff and expat. To compile those libraries for yourself, launch MSYS (rxvt) and type the following commands. To build zlib:



unzip zlib125.zip
cd zlib-1.2.5/
make -f win32/Makefile.gcc


Then, manually copy the files as follows:



cp -iv zlib1.dll /mingw/bin
cp -iv zconf.h zlib.h /mingw/include
cp -iv libz.a /mingw/lib
cp -iv libzdll.a /mingw/lib/libz.dll.a


To compile libPNG:


tar xzvf libpng-1.4.1.tar.gz 
cd libpng-1.4.1
./configure --prefix=/mingw
make
make install


To compile libJPEG:


tar xzvf jpegsrc.v8a.tar.gz
cd jpeg-8a/
./configure --prefix=/mingw
make
make install


Compile libTIFF like this:



./configure --prefix=/mingw
make
cd libtiff; make install


eXpat is an XML parser library, but compiling it is optional. To build it:



tar xzvf expat-2.0.1.tar.gz 
cd expat-2.0.1/
./configure --prefix=/mingw
make
make install


If you want your wxMSW applications to be able to handle Unicode in Windows 9x/ME, download libunicows-1.1.1-mingw32.zip and extract libunicows.a to /mingw/lib. Also, don't forget to include unicows.dll in your distribution.



Optionally, download DirectX 7 headers and extract them into /mingw/include.



wxMSW Shared Library


I downloaded wxMSW 2.8.10 source (wxMSW-2.8.10.zip) from http://www.wxwidgets.org/downloads/ and unzipped it in my home folder. I changed directory to the build subfolder and configured wxMSW like this:


cd $HOME

unzip wxMSW-2.8.10.zip

cd wxMSW-2.8.10/build

../configure --prefix=/mingw --with-msw --enable-shared --enable-optimise --enable-intl --enable-mslu --enable-unicode --enable-official_build --without-subdirs --with-regex

Then, I called make:


make

Compilation succeeded. Then, I called make install:


make install

This installed the following files on the system:


bin/wx-config
include/wx-2.8/wx/aboutdlg.h
include/wx-2.8/wx/accel.h
include/wx-2.8/wx/access.h
include/wx-2.8/wx/afterstd.h
include/wx-2.8/wx/anidecod.h
include/wx-2.8/wx/animate.h
include/wx-2.8/wx/animdecod.h
include/wx-2.8/wx/app.h
include/wx-2.8/wx/apptrait.h
include/wx-2.8/wx/archive.h
include/wx-2.8/wx/arrimpl.cpp
include/wx-2.8/wx/arrstr.h
include/wx-2.8/wx/artprov.h
include/wx-2.8/wx/aui/aui.h
include/wx-2.8/wx/aui/auibar.h
include/wx-2.8/wx/aui/auibook.h
include/wx-2.8/wx/aui/dockart.h
include/wx-2.8/wx/aui/floatpane.h
include/wx-2.8/wx/aui/framemanager.h
include/wx-2.8/wx/aui/tabmdi.h
include/wx-2.8/wx/beforestd.h
include/wx-2.8/wx/bitmap.h
include/wx-2.8/wx/bmpbuttn.h
include/wx-2.8/wx/bmpcbox.h
include/wx-2.8/wx/bookctrl.h
include/wx-2.8/wx/brush.h
include/wx-2.8/wx/buffer.h
include/wx-2.8/wx/build.h
include/wx-2.8/wx/busyinfo.h
include/wx-2.8/wx/button.h
include/wx-2.8/wx/calctrl.h
include/wx-2.8/wx/caret.h
include/wx-2.8/wx/checkbox.h
include/wx-2.8/wx/checklst.h
include/wx-2.8/wx/chkconf.h
include/wx-2.8/wx/choicdlg.h
include/wx-2.8/wx/choice.h
include/wx-2.8/wx/choicebk.h
include/wx-2.8/wx/clipbrd.h
include/wx-2.8/wx/clntdata.h
include/wx-2.8/wx/clrpicker.h
include/wx-2.8/wx/cmdline.h
include/wx-2.8/wx/cmdproc.h
include/wx-2.8/wx/cmndata.h
include/wx-2.8/wx/collpane.h
include/wx-2.8/wx/colordlg.h
include/wx-2.8/wx/colour.h
include/wx-2.8/wx/combo.h
include/wx-2.8/wx/combobox.h
include/wx-2.8/wx/confbase.h
include/wx-2.8/wx/config.h
include/wx-2.8/wx/containr.h
include/wx-2.8/wx/control.h
include/wx-2.8/wx/convauto.h
include/wx-2.8/wx/cpp.h
include/wx-2.8/wx/cshelp.h
include/wx-2.8/wx/ctrlsub.h
include/wx-2.8/wx/cursor.h
include/wx-2.8/wx/dataobj.h
include/wx-2.8/wx/dataview.h
include/wx-2.8/wx/datectrl.h
include/wx-2.8/wx/dateevt.h
include/wx-2.8/wx/datetime.h
include/wx-2.8/wx/datstrm.h
include/wx-2.8/wx/db.h
include/wx-2.8/wx/dbgrid.h
include/wx-2.8/wx/dbkeyg.h
include/wx-2.8/wx/dbtable.h
include/wx-2.8/wx/dc.h
include/wx-2.8/wx/dcbuffer.h
include/wx-2.8/wx/dcclient.h
include/wx-2.8/wx/dcgraph.h
include/wx-2.8/wx/dcmemory.h
include/wx-2.8/wx/dcmirror.h
include/wx-2.8/wx/dcprint.h
include/wx-2.8/wx/dcps.h
include/wx-2.8/wx/dcscreen.h
include/wx-2.8/wx/dde.h
include/wx-2.8/wx/debug.h
include/wx-2.8/wx/debugrpt.h
include/wx-2.8/wx/defs.h
include/wx-2.8/wx/dialog.h
include/wx-2.8/wx/dialup.h
include/wx-2.8/wx/dir.h
include/wx-2.8/wx/dirctrl.h
include/wx-2.8/wx/dirdlg.h
include/wx-2.8/wx/display.h
include/wx-2.8/wx/display_impl.h
include/wx-2.8/wx/dlimpexp.h
include/wx-2.8/wx/dnd.h
include/wx-2.8/wx/docmdi.h
include/wx-2.8/wx/docview.h
include/wx-2.8/wx/dragimag.h
include/wx-2.8/wx/dynarray.h
include/wx-2.8/wx/dynlib.h
include/wx-2.8/wx/dynload.h
include/wx-2.8/wx/effects.h
include/wx-2.8/wx/encconv.h
include/wx-2.8/wx/encinfo.h
include/wx-2.8/wx/event.h
include/wx-2.8/wx/evtloop.h
include/wx-2.8/wx/except.h
include/wx-2.8/wx/fdrepdlg.h
include/wx-2.8/wx/features.h
include/wx-2.8/wx/ffile.h
include/wx-2.8/wx/file.h
include/wx-2.8/wx/fileconf.h
include/wx-2.8/wx/filedlg.h
include/wx-2.8/wx/filefn.h
include/wx-2.8/wx/filename.h
include/wx-2.8/wx/filepicker.h
include/wx-2.8/wx/filesys.h
include/wx-2.8/wx/fmappriv.h
include/wx-2.8/wx/font.h
include/wx-2.8/wx/fontdlg.h
include/wx-2.8/wx/fontenc.h
include/wx-2.8/wx/fontenum.h
include/wx-2.8/wx/fontmap.h
include/wx-2.8/wx/fontpicker.h
include/wx-2.8/wx/fontutil.h
include/wx-2.8/wx/frame.h
include/wx-2.8/wx/fs_arc.h
include/wx-2.8/wx/fs_filter.h
include/wx-2.8/wx/fs_inet.h
include/wx-2.8/wx/fs_mem.h
include/wx-2.8/wx/fs_zip.h
include/wx-2.8/wx/gauge.h
include/wx-2.8/wx/gbsizer.h
include/wx-2.8/wx/gdicmn.h
include/wx-2.8/wx/gdiobj.h
include/wx-2.8/wx/generic/aboutdlgg.h
include/wx-2.8/wx/generic/accel.h
include/wx-2.8/wx/generic/animate.h
include/wx-2.8/wx/generic/bmpcbox.h
include/wx-2.8/wx/generic/busyinfo.h
include/wx-2.8/wx/generic/buttonbar.h
include/wx-2.8/wx/generic/calctrl.h
include/wx-2.8/wx/generic/choicdgg.h
include/wx-2.8/wx/generic/clrpickerg.h
include/wx-2.8/wx/generic/collpaneg.h
include/wx-2.8/wx/generic/colrdlgg.h
include/wx-2.8/wx/generic/combo.h
include/wx-2.8/wx/generic/dataview.h
include/wx-2.8/wx/generic/datectrl.h
include/wx-2.8/wx/generic/dcpsg.h
include/wx-2.8/wx/generic/dirctrlg.h
include/wx-2.8/wx/generic/dragimgg.h
include/wx-2.8/wx/generic/filedlgg.h
include/wx-2.8/wx/generic/filepickerg.h
include/wx-2.8/wx/generic/fontdlgg.h
include/wx-2.8/wx/generic/fontpickerg.h
include/wx-2.8/wx/generic/grid.h
include/wx-2.8/wx/generic/gridctrl.h
include/wx-2.8/wx/generic/gridsel.h
include/wx-2.8/wx/generic/helpext.h
include/wx-2.8/wx/generic/laywin.h
include/wx-2.8/wx/generic/logg.h
include/wx-2.8/wx/generic/msgdlgg.h
include/wx-2.8/wx/generic/notebook.h
include/wx-2.8/wx/generic/numdlgg.h
include/wx-2.8/wx/generic/panelg.h
include/wx-2.8/wx/generic/printps.h
include/wx-2.8/wx/generic/prntdlgg.h
include/wx-2.8/wx/generic/progdlgg.h
include/wx-2.8/wx/generic/propdlg.h
include/wx-2.8/wx/generic/sashwin.h
include/wx-2.8/wx/generic/scrolwin.h
include/wx-2.8/wx/generic/spinctlg.h
include/wx-2.8/wx/generic/splash.h
include/wx-2.8/wx/generic/splitter.h
include/wx-2.8/wx/generic/srchctlg.h
include/wx-2.8/wx/generic/textdlgg.h
include/wx-2.8/wx/generic/timer.h
include/wx-2.8/wx/generic/treectlg.h
include/wx-2.8/wx/generic/wizard.h
include/wx-2.8/wx/geometry.h
include/wx-2.8/wx/gifdecod.h
include/wx-2.8/wx/glcanvas.h
include/wx-2.8/wx/graphics.h
include/wx-2.8/wx/grid.h
include/wx-2.8/wx/gsocket.h
include/wx-2.8/wx/hash.h
include/wx-2.8/wx/hashmap.h
include/wx-2.8/wx/hashset.h
include/wx-2.8/wx/help.h
include/wx-2.8/wx/helpbase.h
include/wx-2.8/wx/helphtml.h
include/wx-2.8/wx/helpwin.h
include/wx-2.8/wx/html/forcelnk.h
include/wx-2.8/wx/html/helpctrl.h
include/wx-2.8/wx/html/helpdata.h
include/wx-2.8/wx/html/helpdlg.h
include/wx-2.8/wx/html/helpfrm.h
include/wx-2.8/wx/html/helpwnd.h
include/wx-2.8/wx/html/htmlcell.h
include/wx-2.8/wx/html/htmldefs.h
include/wx-2.8/wx/html/htmlfilt.h
include/wx-2.8/wx/html/htmlpars.h
include/wx-2.8/wx/html/htmlproc.h
include/wx-2.8/wx/html/htmltag.h
include/wx-2.8/wx/html/htmlwin.h
include/wx-2.8/wx/html/htmprint.h
include/wx-2.8/wx/html/m_templ.h
include/wx-2.8/wx/html/winpars.h
include/wx-2.8/wx/htmllbox.h
include/wx-2.8/wx/hyperlink.h
include/wx-2.8/wx/icon.h
include/wx-2.8/wx/iconbndl.h
include/wx-2.8/wx/iconloc.h
include/wx-2.8/wx/imagbmp.h
include/wx-2.8/wx/image.h
include/wx-2.8/wx/imaggif.h
include/wx-2.8/wx/imagiff.h
include/wx-2.8/wx/imagjpeg.h
include/wx-2.8/wx/imaglist.h
include/wx-2.8/wx/imagpcx.h
include/wx-2.8/wx/imagpng.h
include/wx-2.8/wx/imagpnm.h
include/wx-2.8/wx/imagtga.h
include/wx-2.8/wx/imagtiff.h
include/wx-2.8/wx/imagxpm.h
include/wx-2.8/wx/init.h
include/wx-2.8/wx/intl.h
include/wx-2.8/wx/iosfwrap.h
include/wx-2.8/wx/ioswrap.h
include/wx-2.8/wx/ipc.h
include/wx-2.8/wx/ipcbase.h
include/wx-2.8/wx/isql.h
include/wx-2.8/wx/isqlext.h
include/wx-2.8/wx/joystick.h
include/wx-2.8/wx/layout.h
include/wx-2.8/wx/laywin.h
include/wx-2.8/wx/link.h
include/wx-2.8/wx/list.h
include/wx-2.8/wx/listbase.h
include/wx-2.8/wx/listbook.h
include/wx-2.8/wx/listbox.h
include/wx-2.8/wx/listctrl.h
include/wx-2.8/wx/listimpl.cpp
include/wx-2.8/wx/log.h
include/wx-2.8/wx/longlong.h
include/wx-2.8/wx/math.h
include/wx-2.8/wx/matrix.h
include/wx-2.8/wx/mdi.h
include/wx-2.8/wx/mediactrl.h
include/wx-2.8/wx/memconf.h
include/wx-2.8/wx/memory.h
include/wx-2.8/wx/memtext.h
include/wx-2.8/wx/menu.h
include/wx-2.8/wx/menuitem.h
include/wx-2.8/wx/metafile.h
include/wx-2.8/wx/mimetype.h
include/wx-2.8/wx/minifram.h
include/wx-2.8/wx/module.h
include/wx-2.8/wx/msgdlg.h
include/wx-2.8/wx/msgout.h
include/wx-2.8/wx/mstream.h
include/wx-2.8/wx/msw/accel.h
include/wx-2.8/wx/msw/amd64.manifest
include/wx-2.8/wx/msw/app.h
include/wx-2.8/wx/msw/apptbase.h
include/wx-2.8/wx/msw/apptrait.h
include/wx-2.8/wx/msw/bitmap.h
include/wx-2.8/wx/msw/blank.cur
include/wx-2.8/wx/msw/bmpbuttn.h
include/wx-2.8/wx/msw/brush.h
include/wx-2.8/wx/msw/bullseye.cur
include/wx-2.8/wx/msw/button.h
include/wx-2.8/wx/msw/caret.h
include/wx-2.8/wx/msw/cdrom.ico
include/wx-2.8/wx/msw/checkbox.h
include/wx-2.8/wx/msw/checklst.h
include/wx-2.8/wx/msw/child.ico
include/wx-2.8/wx/msw/chkconf.h
include/wx-2.8/wx/msw/choice.h
include/wx-2.8/wx/msw/clipbrd.h
include/wx-2.8/wx/msw/colordlg.h
include/wx-2.8/wx/msw/colour.h
include/wx-2.8/wx/msw/colours.bmp
include/wx-2.8/wx/msw/combo.h
include/wx-2.8/wx/msw/combobox.h
include/wx-2.8/wx/msw/computer.ico
include/wx-2.8/wx/msw/control.h
include/wx-2.8/wx/msw/crashrpt.h
include/wx-2.8/wx/msw/cross.cur
include/wx-2.8/wx/msw/csquery.bmp
include/wx-2.8/wx/msw/cursor.h
include/wx-2.8/wx/msw/datectrl.h
include/wx-2.8/wx/msw/dc.h
include/wx-2.8/wx/msw/dcclient.h
include/wx-2.8/wx/msw/dcmemory.h
include/wx-2.8/wx/msw/dcprint.h
include/wx-2.8/wx/msw/dcscreen.h
include/wx-2.8/wx/msw/dde.h
include/wx-2.8/wx/msw/debughlp.h
include/wx-2.8/wx/msw/dialog.h
include/wx-2.8/wx/msw/dib.h
include/wx-2.8/wx/msw/dirdlg.h
include/wx-2.8/wx/msw/dragimag.h
include/wx-2.8/wx/msw/drive.ico
include/wx-2.8/wx/msw/enhmeta.h
include/wx-2.8/wx/msw/evtloop.h
include/wx-2.8/wx/msw/fdrepdlg.h
include/wx-2.8/wx/msw/file1.ico
include/wx-2.8/wx/msw/filedlg.h
include/wx-2.8/wx/msw/floppy.ico
include/wx-2.8/wx/msw/folder1.ico
include/wx-2.8/wx/msw/folder2.ico
include/wx-2.8/wx/msw/font.h
include/wx-2.8/wx/msw/fontdlg.h
include/wx-2.8/wx/msw/frame.h
include/wx-2.8/wx/msw/gauge95.h
include/wx-2.8/wx/msw/gccpriv.h
include/wx-2.8/wx/msw/gdiimage.h
include/wx-2.8/wx/msw/glcanvas.h
include/wx-2.8/wx/msw/gsockmsw.h
include/wx-2.8/wx/msw/hand.cur
include/wx-2.8/wx/msw/helpbest.h
include/wx-2.8/wx/msw/helpchm.h
include/wx-2.8/wx/msw/helpwin.h
include/wx-2.8/wx/msw/htmlhelp.h
include/wx-2.8/wx/msw/ia64.manifest
include/wx-2.8/wx/msw/icon.h
include/wx-2.8/wx/msw/imaglist.h
include/wx-2.8/wx/msw/iniconf.h
include/wx-2.8/wx/msw/joystick.h
include/wx-2.8/wx/msw/libraries.h
include/wx-2.8/wx/msw/listbox.h
include/wx-2.8/wx/msw/listctrl.h
include/wx-2.8/wx/msw/magnif1.cur
include/wx-2.8/wx/msw/mdi.h
include/wx-2.8/wx/msw/mdi.ico
include/wx-2.8/wx/msw/menu.h
include/wx-2.8/wx/msw/menuitem.h
include/wx-2.8/wx/msw/metafile.h
include/wx-2.8/wx/msw/mimetype.h
include/wx-2.8/wx/msw/minifram.h
include/wx-2.8/wx/msw/missing.h
include/wx-2.8/wx/msw/msgdlg.h
include/wx-2.8/wx/msw/mslu.h
include/wx-2.8/wx/msw/msvcrt.h
include/wx-2.8/wx/msw/notebook.h
include/wx-2.8/wx/msw/ole/access.h
include/wx-2.8/wx/msw/ole/activex.h
include/wx-2.8/wx/msw/ole/automtn.h
include/wx-2.8/wx/msw/ole/dataform.h
include/wx-2.8/wx/msw/ole/dataobj.h
include/wx-2.8/wx/msw/ole/dataobj2.h
include/wx-2.8/wx/msw/ole/dropsrc.h
include/wx-2.8/wx/msw/ole/droptgt.h
include/wx-2.8/wx/msw/ole/oleutils.h
include/wx-2.8/wx/msw/ole/uuid.h
include/wx-2.8/wx/msw/palette.h
include/wx-2.8/wx/msw/pbrush.cur
include/wx-2.8/wx/msw/pen.h
include/wx-2.8/wx/msw/pencil.cur
include/wx-2.8/wx/msw/pntleft.cur
include/wx-2.8/wx/msw/pntright.cur
include/wx-2.8/wx/msw/popupwin.h
include/wx-2.8/wx/msw/printdlg.h
include/wx-2.8/wx/msw/printwin.h
include/wx-2.8/wx/msw/private.h
include/wx-2.8/wx/msw/question.ico
include/wx-2.8/wx/msw/radiobox.h
include/wx-2.8/wx/msw/radiobut.h
include/wx-2.8/wx/msw/rcdefs.h
include/wx-2.8/wx/msw/regconf.h
include/wx-2.8/wx/msw/region.h
include/wx-2.8/wx/msw/registry.h
include/wx-2.8/wx/msw/removble.ico
include/wx-2.8/wx/msw/rightarr.cur
include/wx-2.8/wx/msw/roller.cur
include/wx-2.8/wx/msw/scrolbar.h
include/wx-2.8/wx/msw/seh.h
include/wx-2.8/wx/msw/setup0.h
include/wx-2.8/wx/msw/slider95.h
include/wx-2.8/wx/msw/sound.h
include/wx-2.8/wx/msw/spinbutt.h
include/wx-2.8/wx/msw/spinctrl.h
include/wx-2.8/wx/msw/stackwalk.h
include/wx-2.8/wx/msw/statbmp.h
include/wx-2.8/wx/msw/statbox.h
include/wx-2.8/wx/msw/statbr95.h
include/wx-2.8/wx/msw/statline.h
include/wx-2.8/wx/msw/stattext.h
include/wx-2.8/wx/msw/std.ico
include/wx-2.8/wx/msw/stdpaths.h
include/wx-2.8/wx/msw/tabctrl.h
include/wx-2.8/wx/msw/taskbar.h
include/wx-2.8/wx/msw/tbar95.h
include/wx-2.8/wx/msw/textctrl.h
include/wx-2.8/wx/msw/tglbtn.h
include/wx-2.8/wx/msw/timer.h
include/wx-2.8/wx/msw/tooltip.h
include/wx-2.8/wx/msw/toplevel.h
include/wx-2.8/wx/msw/treectrl.h
include/wx-2.8/wx/msw/uxtheme.h
include/wx-2.8/wx/msw/uxthemep.h
include/wx-2.8/wx/msw/window.h
include/wx-2.8/wx/msw/winundef.h
include/wx-2.8/wx/msw/wrapcctl.h
include/wx-2.8/wx/msw/wrapcdlg.h
include/wx-2.8/wx/msw/wrapwin.h
include/wx-2.8/wx/msw/wx.manifest
include/wx-2.8/wx/msw/wx.rc
include/wx-2.8/wx/notebook.h
include/wx-2.8/wx/numdlg.h
include/wx-2.8/wx/object.h
include/wx-2.8/wx/odcombo.h
include/wx-2.8/wx/overlay.h
include/wx-2.8/wx/ownerdrw.h
include/wx-2.8/wx/palette.h
include/wx-2.8/wx/panel.h
include/wx-2.8/wx/paper.h
include/wx-2.8/wx/pen.h
include/wx-2.8/wx/pickerbase.h
include/wx-2.8/wx/platform.h
include/wx-2.8/wx/platinfo.h
include/wx-2.8/wx/popupwin.h
include/wx-2.8/wx/power.h
include/wx-2.8/wx/print.h
include/wx-2.8/wx/printdlg.h
include/wx-2.8/wx/prntbase.h
include/wx-2.8/wx/process.h
include/wx-2.8/wx/progdlg.h
include/wx-2.8/wx/propdlg.h
include/wx-2.8/wx/protocol/file.h
include/wx-2.8/wx/protocol/ftp.h
include/wx-2.8/wx/protocol/http.h
include/wx-2.8/wx/protocol/protocol.h
include/wx-2.8/wx/ptr_scpd.h
include/wx-2.8/wx/quantize.h
include/wx-2.8/wx/radiobox.h
include/wx-2.8/wx/radiobut.h
include/wx-2.8/wx/rawbmp.h
include/wx-2.8/wx/recguard.h
include/wx-2.8/wx/regex.h
include/wx-2.8/wx/region.h
include/wx-2.8/wx/renderer.h
include/wx-2.8/wx/richtext/richtextbuffer.h
include/wx-2.8/wx/richtext/richtextctrl.h
include/wx-2.8/wx/richtext/richtextformatdlg.h
include/wx-2.8/wx/richtext/richtexthtml.h
include/wx-2.8/wx/richtext/richtextprint.h
include/wx-2.8/wx/richtext/richtextstyledlg.h
include/wx-2.8/wx/richtext/richtextstyles.h
include/wx-2.8/wx/richtext/richtextsymboldlg.h
include/wx-2.8/wx/richtext/richtextxml.h
include/wx-2.8/wx/sashwin.h
include/wx-2.8/wx/sckaddr.h
include/wx-2.8/wx/sckipc.h
include/wx-2.8/wx/sckstrm.h
include/wx-2.8/wx/scopeguard.h
include/wx-2.8/wx/scrolbar.h
include/wx-2.8/wx/scrolwin.h
include/wx-2.8/wx/selstore.h
include/wx-2.8/wx/settings.h
include/wx-2.8/wx/sizer.h
include/wx-2.8/wx/slider.h
include/wx-2.8/wx/snglinst.h
include/wx-2.8/wx/socket.h
include/wx-2.8/wx/sound.h
include/wx-2.8/wx/spinbutt.h
include/wx-2.8/wx/spinctrl.h
include/wx-2.8/wx/splash.h
include/wx-2.8/wx/splitter.h
include/wx-2.8/wx/srchctrl.h
include/wx-2.8/wx/sstream.h
include/wx-2.8/wx/stack.h
include/wx-2.8/wx/stackwalk.h
include/wx-2.8/wx/statbmp.h
include/wx-2.8/wx/statbox.h
include/wx-2.8/wx/statline.h
include/wx-2.8/wx/stattext.h
include/wx-2.8/wx/statusbr.h
include/wx-2.8/wx/stdpaths.h
include/wx-2.8/wx/stockitem.h
include/wx-2.8/wx/stopwatch.h
include/wx-2.8/wx/strconv.h
include/wx-2.8/wx/stream.h
include/wx-2.8/wx/string.h
include/wx-2.8/wx/sysopt.h
include/wx-2.8/wx/tab.h
include/wx-2.8/wx/tabctrl.h
include/wx-2.8/wx/tarstrm.h
include/wx-2.8/wx/taskbar.h
include/wx-2.8/wx/tbarbase.h
include/wx-2.8/wx/textbuf.h
include/wx-2.8/wx/textctrl.h
include/wx-2.8/wx/textdlg.h
include/wx-2.8/wx/textfile.h
include/wx-2.8/wx/tglbtn.h
include/wx-2.8/wx/thread.h
include/wx-2.8/wx/thrimpl.cpp
include/wx-2.8/wx/timer.h
include/wx-2.8/wx/tipdlg.h
include/wx-2.8/wx/tipwin.h
include/wx-2.8/wx/tokenzr.h
include/wx-2.8/wx/toolbar.h
include/wx-2.8/wx/toolbook.h
include/wx-2.8/wx/tooltip.h
include/wx-2.8/wx/toplevel.h
include/wx-2.8/wx/treebase.h
include/wx-2.8/wx/treebook.h
include/wx-2.8/wx/treectrl.h
include/wx-2.8/wx/txtstrm.h
include/wx-2.8/wx/types.h
include/wx-2.8/wx/uri.h
include/wx-2.8/wx/url.h
include/wx-2.8/wx/utils.h
include/wx-2.8/wx/valgen.h
include/wx-2.8/wx/validate.h
include/wx-2.8/wx/valtext.h
include/wx-2.8/wx/variant.h
include/wx-2.8/wx/vector.h
include/wx-2.8/wx/version.h
include/wx-2.8/wx/vidmode.h
include/wx-2.8/wx/vlbox.h
include/wx-2.8/wx/vms_x_fix.h
include/wx-2.8/wx/volume.h
include/wx-2.8/wx/vscroll.h
include/wx-2.8/wx/wave.h
include/wx-2.8/wx/wfstream.h
include/wx-2.8/wx/window.h
include/wx-2.8/wx/wizard.h
include/wx-2.8/wx/wupdlock.h
include/wx-2.8/wx/wx.h
include/wx-2.8/wx/wxchar.h
include/wx-2.8/wx/wxhtml.h
include/wx-2.8/wx/wxprec.h
include/wx-2.8/wx/xml/xml.h
include/wx-2.8/wx/xpmdecod.h
include/wx-2.8/wx/xpmhand.h
include/wx-2.8/wx/xrc/xh_all.h
include/wx-2.8/wx/xrc/xh_animatctrl.h
include/wx-2.8/wx/xrc/xh_bmp.h
include/wx-2.8/wx/xrc/xh_bmpbt.h
include/wx-2.8/wx/xrc/xh_bmpcbox.h
include/wx-2.8/wx/xrc/xh_bttn.h
include/wx-2.8/wx/xrc/xh_cald.h
include/wx-2.8/wx/xrc/xh_chckb.h
include/wx-2.8/wx/xrc/xh_chckl.h
include/wx-2.8/wx/xrc/xh_choic.h
include/wx-2.8/wx/xrc/xh_choicbk.h
include/wx-2.8/wx/xrc/xh_clrpicker.h
include/wx-2.8/wx/xrc/xh_collpane.h
include/wx-2.8/wx/xrc/xh_combo.h
include/wx-2.8/wx/xrc/xh_datectrl.h
include/wx-2.8/wx/xrc/xh_dirpicker.h
include/wx-2.8/wx/xrc/xh_dlg.h
include/wx-2.8/wx/xrc/xh_filepicker.h
include/wx-2.8/wx/xrc/xh_fontpicker.h
include/wx-2.8/wx/xrc/xh_frame.h
include/wx-2.8/wx/xrc/xh_gauge.h
include/wx-2.8/wx/xrc/xh_gdctl.h
include/wx-2.8/wx/xrc/xh_grid.h
include/wx-2.8/wx/xrc/xh_html.h
include/wx-2.8/wx/xrc/xh_htmllbox.h
include/wx-2.8/wx/xrc/xh_hyperlink.h
include/wx-2.8/wx/xrc/xh_listb.h
include/wx-2.8/wx/xrc/xh_listbk.h
include/wx-2.8/wx/xrc/xh_listc.h
include/wx-2.8/wx/xrc/xh_mdi.h
include/wx-2.8/wx/xrc/xh_menu.h
include/wx-2.8/wx/xrc/xh_notbk.h
include/wx-2.8/wx/xrc/xh_odcombo.h
include/wx-2.8/wx/xrc/xh_panel.h
include/wx-2.8/wx/xrc/xh_propdlg.h
include/wx-2.8/wx/xrc/xh_radbt.h
include/wx-2.8/wx/xrc/xh_radbx.h
include/wx-2.8/wx/xrc/xh_scrol.h
include/wx-2.8/wx/xrc/xh_scwin.h
include/wx-2.8/wx/xrc/xh_sizer.h
include/wx-2.8/wx/xrc/xh_slidr.h
include/wx-2.8/wx/xrc/xh_spin.h
include/wx-2.8/wx/xrc/xh_split.h
include/wx-2.8/wx/xrc/xh_statbar.h
include/wx-2.8/wx/xrc/xh_stbmp.h
include/wx-2.8/wx/xrc/xh_stbox.h
include/wx-2.8/wx/xrc/xh_stlin.h
include/wx-2.8/wx/xrc/xh_sttxt.h
include/wx-2.8/wx/xrc/xh_text.h
include/wx-2.8/wx/xrc/xh_tglbtn.h
include/wx-2.8/wx/xrc/xh_toolb.h
include/wx-2.8/wx/xrc/xh_tree.h
include/wx-2.8/wx/xrc/xh_treebk.h
include/wx-2.8/wx/xrc/xh_unkwn.h
include/wx-2.8/wx/xrc/xh_wizrd.h
include/wx-2.8/wx/xrc/xmlres.h
include/wx-2.8/wx/xti.h
include/wx-2.8/wx/xtistrm.h
include/wx-2.8/wx/xtixml.h
include/wx-2.8/wx/zipstrm.h
include/wx-2.8/wx/zstream.h
lib/libwx_baseu-2.8.dll.a
lib/libwx_baseu_net-2.8.dll.a
lib/libwx_baseu_xml-2.8.dll.a
lib/libwx_mswu_adv-2.8.dll.a
lib/libwx_mswu_aui-2.8.dll.a
lib/libwx_mswu_core-2.8.dll.a
lib/libwx_mswu_html-2.8.dll.a
lib/libwx_mswu_qa-2.8.dll.a
lib/libwx_mswu_richtext-2.8.dll.a
lib/libwx_mswu_xrc-2.8.dll.a
lib/wx/config/msw-unicode-release-2.8
lib/wx/include/msw-unicode-release-2.8/wx/msw/rcdefs.h
lib/wx/include/msw-unicode-release-2.8/wx/setup.h
lib/wxbase28u_gcc.dll
lib/wxbase28u_net_gcc.dll
lib/wxbase28u_xml_gcc.dll
lib/wxmsw28u_adv_gcc.dll
lib/wxmsw28u_aui_gcc.dll
lib/wxmsw28u_core_gcc.dll
lib/wxmsw28u_html_gcc.dll
lib/wxmsw28u_qa_gcc.dll
lib/wxmsw28u_richtext_gcc.dll
lib/wxmsw28u_xrc_gcc.dll
share/aclocal/wxwin.m4
share/bakefile/presets/wx.bkl
share/bakefile/presets/wx_unix.bkl
share/bakefile/presets/wx_win32.bkl

I'll make a Zip archive of these files for later use. Now that I built the wxMSW library, I can start compiling applications based on wxWidgets ;)



Building wxMSW into a Shared, Monolithic Build


To produce a shared library with a single DLL, I configured wxMSW like this:


../configure --prefix=/mingw --with-msw --enable-shared --enable-monolithic --enable-optimise --enable-intl --enable-mslu --enable-unicode --enable-official_build --without-subdirs --with-regex

make

make install

This installs the following files:


bin/wx-config
include/wx-2.8/wx/aboutdlg.h
include/wx-2.8/wx/accel.h
include/wx-2.8/wx/access.h
include/wx-2.8/wx/afterstd.h
include/wx-2.8/wx/anidecod.h
include/wx-2.8/wx/animate.h
include/wx-2.8/wx/animdecod.h
include/wx-2.8/wx/app.h
include/wx-2.8/wx/apptrait.h
include/wx-2.8/wx/archive.h
include/wx-2.8/wx/arrimpl.cpp
include/wx-2.8/wx/arrstr.h
include/wx-2.8/wx/artprov.h
include/wx-2.8/wx/aui/aui.h
include/wx-2.8/wx/aui/auibar.h
include/wx-2.8/wx/aui/auibook.h
include/wx-2.8/wx/aui/dockart.h
include/wx-2.8/wx/aui/floatpane.h
include/wx-2.8/wx/aui/framemanager.h
include/wx-2.8/wx/aui/tabmdi.h
include/wx-2.8/wx/beforestd.h
include/wx-2.8/wx/bitmap.h
include/wx-2.8/wx/bmpbuttn.h
include/wx-2.8/wx/bmpcbox.h
include/wx-2.8/wx/bookctrl.h
include/wx-2.8/wx/brush.h
include/wx-2.8/wx/buffer.h
include/wx-2.8/wx/build.h
include/wx-2.8/wx/busyinfo.h
include/wx-2.8/wx/button.h
include/wx-2.8/wx/calctrl.h
include/wx-2.8/wx/caret.h
include/wx-2.8/wx/checkbox.h
include/wx-2.8/wx/checklst.h
include/wx-2.8/wx/chkconf.h
include/wx-2.8/wx/choicdlg.h
include/wx-2.8/wx/choice.h
include/wx-2.8/wx/choicebk.h
include/wx-2.8/wx/clipbrd.h
include/wx-2.8/wx/clntdata.h
include/wx-2.8/wx/clrpicker.h
include/wx-2.8/wx/cmdline.h
include/wx-2.8/wx/cmdproc.h
include/wx-2.8/wx/cmndata.h
include/wx-2.8/wx/collpane.h
include/wx-2.8/wx/colordlg.h
include/wx-2.8/wx/colour.h
include/wx-2.8/wx/combo.h
include/wx-2.8/wx/combobox.h
include/wx-2.8/wx/confbase.h
include/wx-2.8/wx/config.h
include/wx-2.8/wx/containr.h
include/wx-2.8/wx/control.h
include/wx-2.8/wx/convauto.h
include/wx-2.8/wx/cpp.h
include/wx-2.8/wx/cshelp.h
include/wx-2.8/wx/ctrlsub.h
include/wx-2.8/wx/cursor.h
include/wx-2.8/wx/dataobj.h
include/wx-2.8/wx/dataview.h
include/wx-2.8/wx/datectrl.h
include/wx-2.8/wx/dateevt.h
include/wx-2.8/wx/datetime.h
include/wx-2.8/wx/datstrm.h
include/wx-2.8/wx/db.h
include/wx-2.8/wx/dbgrid.h
include/wx-2.8/wx/dbkeyg.h
include/wx-2.8/wx/dbtable.h
include/wx-2.8/wx/dc.h
include/wx-2.8/wx/dcbuffer.h
include/wx-2.8/wx/dcclient.h
include/wx-2.8/wx/dcgraph.h
include/wx-2.8/wx/dcmemory.h
include/wx-2.8/wx/dcmirror.h
include/wx-2.8/wx/dcprint.h
include/wx-2.8/wx/dcps.h
include/wx-2.8/wx/dcscreen.h
include/wx-2.8/wx/dde.h
include/wx-2.8/wx/debug.h
include/wx-2.8/wx/debugrpt.h
include/wx-2.8/wx/defs.h
include/wx-2.8/wx/dialog.h
include/wx-2.8/wx/dialup.h
include/wx-2.8/wx/dir.h
include/wx-2.8/wx/dirctrl.h
include/wx-2.8/wx/dirdlg.h
include/wx-2.8/wx/display.h
include/wx-2.8/wx/display_impl.h
include/wx-2.8/wx/dlimpexp.h
include/wx-2.8/wx/dnd.h
include/wx-2.8/wx/docmdi.h
include/wx-2.8/wx/docview.h
include/wx-2.8/wx/dragimag.h
include/wx-2.8/wx/dynarray.h
include/wx-2.8/wx/dynlib.h
include/wx-2.8/wx/dynload.h
include/wx-2.8/wx/effects.h
include/wx-2.8/wx/encconv.h
include/wx-2.8/wx/encinfo.h
include/wx-2.8/wx/event.h
include/wx-2.8/wx/evtloop.h
include/wx-2.8/wx/except.h
include/wx-2.8/wx/fdrepdlg.h
include/wx-2.8/wx/features.h
include/wx-2.8/wx/ffile.h
include/wx-2.8/wx/file.h
include/wx-2.8/wx/fileconf.h
include/wx-2.8/wx/filedlg.h
include/wx-2.8/wx/filefn.h
include/wx-2.8/wx/filename.h
include/wx-2.8/wx/filepicker.h
include/wx-2.8/wx/filesys.h
include/wx-2.8/wx/fmappriv.h
include/wx-2.8/wx/font.h
include/wx-2.8/wx/fontdlg.h
include/wx-2.8/wx/fontenc.h
include/wx-2.8/wx/fontenum.h
include/wx-2.8/wx/fontmap.h
include/wx-2.8/wx/fontpicker.h
include/wx-2.8/wx/fontutil.h
include/wx-2.8/wx/frame.h
include/wx-2.8/wx/fs_arc.h
include/wx-2.8/wx/fs_filter.h
include/wx-2.8/wx/fs_inet.h
include/wx-2.8/wx/fs_mem.h
include/wx-2.8/wx/fs_zip.h
include/wx-2.8/wx/gauge.h
include/wx-2.8/wx/gbsizer.h
include/wx-2.8/wx/gdicmn.h
include/wx-2.8/wx/gdiobj.h
include/wx-2.8/wx/generic/aboutdlgg.h
include/wx-2.8/wx/generic/accel.h
include/wx-2.8/wx/generic/animate.h
include/wx-2.8/wx/generic/bmpcbox.h
include/wx-2.8/wx/generic/busyinfo.h
include/wx-2.8/wx/generic/buttonbar.h
include/wx-2.8/wx/generic/calctrl.h
include/wx-2.8/wx/generic/choicdgg.h
include/wx-2.8/wx/generic/clrpickerg.h
include/wx-2.8/wx/generic/collpaneg.h
include/wx-2.8/wx/generic/colrdlgg.h
include/wx-2.8/wx/generic/combo.h
include/wx-2.8/wx/generic/dataview.h
include/wx-2.8/wx/generic/datectrl.h
include/wx-2.8/wx/generic/dcpsg.h
include/wx-2.8/wx/generic/dirctrlg.h
include/wx-2.8/wx/generic/dragimgg.h
include/wx-2.8/wx/generic/filedlgg.h
include/wx-2.8/wx/generic/filepickerg.h
include/wx-2.8/wx/generic/fontdlgg.h
include/wx-2.8/wx/generic/fontpickerg.h
include/wx-2.8/wx/generic/grid.h
include/wx-2.8/wx/generic/gridctrl.h
include/wx-2.8/wx/generic/gridsel.h
include/wx-2.8/wx/generic/helpext.h
include/wx-2.8/wx/generic/laywin.h
include/wx-2.8/wx/generic/logg.h
include/wx-2.8/wx/generic/msgdlgg.h
include/wx-2.8/wx/generic/notebook.h
include/wx-2.8/wx/generic/numdlgg.h
include/wx-2.8/wx/generic/panelg.h
include/wx-2.8/wx/generic/printps.h
include/wx-2.8/wx/generic/prntdlgg.h
include/wx-2.8/wx/generic/progdlgg.h
include/wx-2.8/wx/generic/propdlg.h
include/wx-2.8/wx/generic/sashwin.h
include/wx-2.8/wx/generic/scrolwin.h
include/wx-2.8/wx/generic/spinctlg.h
include/wx-2.8/wx/generic/splash.h
include/wx-2.8/wx/generic/splitter.h
include/wx-2.8/wx/generic/srchctlg.h
include/wx-2.8/wx/generic/textdlgg.h
include/wx-2.8/wx/generic/timer.h
include/wx-2.8/wx/generic/treectlg.h
include/wx-2.8/wx/generic/wizard.h
include/wx-2.8/wx/geometry.h
include/wx-2.8/wx/gifdecod.h
include/wx-2.8/wx/glcanvas.h
include/wx-2.8/wx/graphics.h
include/wx-2.8/wx/grid.h
include/wx-2.8/wx/gsocket.h
include/wx-2.8/wx/hash.h
include/wx-2.8/wx/hashmap.h
include/wx-2.8/wx/hashset.h
include/wx-2.8/wx/help.h
include/wx-2.8/wx/helpbase.h
include/wx-2.8/wx/helphtml.h
include/wx-2.8/wx/helpwin.h
include/wx-2.8/wx/html/forcelnk.h
include/wx-2.8/wx/html/helpctrl.h
include/wx-2.8/wx/html/helpdata.h
include/wx-2.8/wx/html/helpdlg.h
include/wx-2.8/wx/html/helpfrm.h
include/wx-2.8/wx/html/helpwnd.h
include/wx-2.8/wx/html/htmlcell.h
include/wx-2.8/wx/html/htmldefs.h
include/wx-2.8/wx/html/htmlfilt.h
include/wx-2.8/wx/html/htmlpars.h
include/wx-2.8/wx/html/htmlproc.h
include/wx-2.8/wx/html/htmltag.h
include/wx-2.8/wx/html/htmlwin.h
include/wx-2.8/wx/html/htmprint.h
include/wx-2.8/wx/html/m_templ.h
include/wx-2.8/wx/html/winpars.h
include/wx-2.8/wx/htmllbox.h
include/wx-2.8/wx/hyperlink.h
include/wx-2.8/wx/icon.h
include/wx-2.8/wx/iconbndl.h
include/wx-2.8/wx/iconloc.h
include/wx-2.8/wx/imagbmp.h
include/wx-2.8/wx/image.h
include/wx-2.8/wx/imaggif.h
include/wx-2.8/wx/imagiff.h
include/wx-2.8/wx/imagjpeg.h
include/wx-2.8/wx/imaglist.h
include/wx-2.8/wx/imagpcx.h
include/wx-2.8/wx/imagpng.h
include/wx-2.8/wx/imagpnm.h
include/wx-2.8/wx/imagtga.h
include/wx-2.8/wx/imagtiff.h
include/wx-2.8/wx/imagxpm.h
include/wx-2.8/wx/init.h
include/wx-2.8/wx/intl.h
include/wx-2.8/wx/iosfwrap.h
include/wx-2.8/wx/ioswrap.h
include/wx-2.8/wx/ipc.h
include/wx-2.8/wx/ipcbase.h
include/wx-2.8/wx/isql.h
include/wx-2.8/wx/isqlext.h
include/wx-2.8/wx/joystick.h
include/wx-2.8/wx/layout.h
include/wx-2.8/wx/laywin.h
include/wx-2.8/wx/link.h
include/wx-2.8/wx/list.h
include/wx-2.8/wx/listbase.h
include/wx-2.8/wx/listbook.h
include/wx-2.8/wx/listbox.h
include/wx-2.8/wx/listctrl.h
include/wx-2.8/wx/listimpl.cpp
include/wx-2.8/wx/log.h
include/wx-2.8/wx/longlong.h
include/wx-2.8/wx/math.h
include/wx-2.8/wx/matrix.h
include/wx-2.8/wx/mdi.h
include/wx-2.8/wx/mediactrl.h
include/wx-2.8/wx/memconf.h
include/wx-2.8/wx/memory.h
include/wx-2.8/wx/memtext.h
include/wx-2.8/wx/menu.h
include/wx-2.8/wx/menuitem.h
include/wx-2.8/wx/metafile.h
include/wx-2.8/wx/mimetype.h
include/wx-2.8/wx/minifram.h
include/wx-2.8/wx/module.h
include/wx-2.8/wx/msgdlg.h
include/wx-2.8/wx/msgout.h
include/wx-2.8/wx/mstream.h
include/wx-2.8/wx/msw/accel.h
include/wx-2.8/wx/msw/amd64.manifest
include/wx-2.8/wx/msw/app.h
include/wx-2.8/wx/msw/apptbase.h
include/wx-2.8/wx/msw/apptrait.h
include/wx-2.8/wx/msw/bitmap.h
include/wx-2.8/wx/msw/blank.cur
include/wx-2.8/wx/msw/bmpbuttn.h
include/wx-2.8/wx/msw/brush.h
include/wx-2.8/wx/msw/bullseye.cur
include/wx-2.8/wx/msw/button.h
include/wx-2.8/wx/msw/caret.h
include/wx-2.8/wx/msw/cdrom.ico
include/wx-2.8/wx/msw/checkbox.h
include/wx-2.8/wx/msw/checklst.h
include/wx-2.8/wx/msw/child.ico
include/wx-2.8/wx/msw/chkconf.h
include/wx-2.8/wx/msw/choice.h
include/wx-2.8/wx/msw/clipbrd.h
include/wx-2.8/wx/msw/colordlg.h
include/wx-2.8/wx/msw/colour.h
include/wx-2.8/wx/msw/colours.bmp
include/wx-2.8/wx/msw/combo.h
include/wx-2.8/wx/msw/combobox.h
include/wx-2.8/wx/msw/computer.ico
include/wx-2.8/wx/msw/control.h
include/wx-2.8/wx/msw/crashrpt.h
include/wx-2.8/wx/msw/cross.cur
include/wx-2.8/wx/msw/csquery.bmp
include/wx-2.8/wx/msw/cursor.h
include/wx-2.8/wx/msw/datectrl.h
include/wx-2.8/wx/msw/dc.h
include/wx-2.8/wx/msw/dcclient.h
include/wx-2.8/wx/msw/dcmemory.h
include/wx-2.8/wx/msw/dcprint.h
include/wx-2.8/wx/msw/dcscreen.h
include/wx-2.8/wx/msw/dde.h
include/wx-2.8/wx/msw/debughlp.h
include/wx-2.8/wx/msw/dialog.h
include/wx-2.8/wx/msw/dib.h
include/wx-2.8/wx/msw/dirdlg.h
include/wx-2.8/wx/msw/dragimag.h
include/wx-2.8/wx/msw/drive.ico
include/wx-2.8/wx/msw/enhmeta.h
include/wx-2.8/wx/msw/evtloop.h
include/wx-2.8/wx/msw/fdrepdlg.h
include/wx-2.8/wx/msw/file1.ico
include/wx-2.8/wx/msw/filedlg.h
include/wx-2.8/wx/msw/floppy.ico
include/wx-2.8/wx/msw/folder1.ico
include/wx-2.8/wx/msw/folder2.ico
include/wx-2.8/wx/msw/font.h
include/wx-2.8/wx/msw/fontdlg.h
include/wx-2.8/wx/msw/frame.h
include/wx-2.8/wx/msw/gauge95.h
include/wx-2.8/wx/msw/gccpriv.h
include/wx-2.8/wx/msw/gdiimage.h
include/wx-2.8/wx/msw/glcanvas.h
include/wx-2.8/wx/msw/gsockmsw.h
include/wx-2.8/wx/msw/hand.cur
include/wx-2.8/wx/msw/helpbest.h
include/wx-2.8/wx/msw/helpchm.h
include/wx-2.8/wx/msw/helpwin.h
include/wx-2.8/wx/msw/htmlhelp.h
include/wx-2.8/wx/msw/ia64.manifest
include/wx-2.8/wx/msw/icon.h
include/wx-2.8/wx/msw/imaglist.h
include/wx-2.8/wx/msw/iniconf.h
include/wx-2.8/wx/msw/joystick.h
include/wx-2.8/wx/msw/libraries.h
include/wx-2.8/wx/msw/listbox.h
include/wx-2.8/wx/msw/listctrl.h
include/wx-2.8/wx/msw/magnif1.cur
include/wx-2.8/wx/msw/mdi.h
include/wx-2.8/wx/msw/mdi.ico
include/wx-2.8/wx/msw/menu.h
include/wx-2.8/wx/msw/menuitem.h
include/wx-2.8/wx/msw/metafile.h
include/wx-2.8/wx/msw/mimetype.h
include/wx-2.8/wx/msw/minifram.h
include/wx-2.8/wx/msw/missing.h
include/wx-2.8/wx/msw/msgdlg.h
include/wx-2.8/wx/msw/mslu.h
include/wx-2.8/wx/msw/msvcrt.h
include/wx-2.8/wx/msw/notebook.h
include/wx-2.8/wx/msw/ole/access.h
include/wx-2.8/wx/msw/ole/activex.h
include/wx-2.8/wx/msw/ole/automtn.h
include/wx-2.8/wx/msw/ole/dataform.h
include/wx-2.8/wx/msw/ole/dataobj.h
include/wx-2.8/wx/msw/ole/dataobj2.h
include/wx-2.8/wx/msw/ole/dropsrc.h
include/wx-2.8/wx/msw/ole/droptgt.h
include/wx-2.8/wx/msw/ole/oleutils.h
include/wx-2.8/wx/msw/ole/uuid.h
include/wx-2.8/wx/msw/palette.h
include/wx-2.8/wx/msw/pbrush.cur
include/wx-2.8/wx/msw/pen.h
include/wx-2.8/wx/msw/pencil.cur
include/wx-2.8/wx/msw/pntleft.cur
include/wx-2.8/wx/msw/pntright.cur
include/wx-2.8/wx/msw/popupwin.h
include/wx-2.8/wx/msw/printdlg.h
include/wx-2.8/wx/msw/printwin.h
include/wx-2.8/wx/msw/private.h
include/wx-2.8/wx/msw/question.ico
include/wx-2.8/wx/msw/radiobox.h
include/wx-2.8/wx/msw/radiobut.h
include/wx-2.8/wx/msw/rcdefs.h
include/wx-2.8/wx/msw/regconf.h
include/wx-2.8/wx/msw/region.h
include/wx-2.8/wx/msw/registry.h
include/wx-2.8/wx/msw/removble.ico
include/wx-2.8/wx/msw/rightarr.cur
include/wx-2.8/wx/msw/roller.cur
include/wx-2.8/wx/msw/scrolbar.h
include/wx-2.8/wx/msw/seh.h
include/wx-2.8/wx/msw/setup0.h
include/wx-2.8/wx/msw/slider95.h
include/wx-2.8/wx/msw/sound.h
include/wx-2.8/wx/msw/spinbutt.h
include/wx-2.8/wx/msw/spinctrl.h
include/wx-2.8/wx/msw/stackwalk.h
include/wx-2.8/wx/msw/statbmp.h
include/wx-2.8/wx/msw/statbox.h
include/wx-2.8/wx/msw/statbr95.h
include/wx-2.8/wx/msw/statline.h
include/wx-2.8/wx/msw/stattext.h
include/wx-2.8/wx/msw/std.ico
include/wx-2.8/wx/msw/stdpaths.h
include/wx-2.8/wx/msw/tabctrl.h
include/wx-2.8/wx/msw/taskbar.h
include/wx-2.8/wx/msw/tbar95.h
include/wx-2.8/wx/msw/textctrl.h
include/wx-2.8/wx/msw/tglbtn.h
include/wx-2.8/wx/msw/timer.h
include/wx-2.8/wx/msw/tooltip.h
include/wx-2.8/wx/msw/toplevel.h
include/wx-2.8/wx/msw/treectrl.h
include/wx-2.8/wx/msw/uxtheme.h
include/wx-2.8/wx/msw/uxthemep.h
include/wx-2.8/wx/msw/window.h
include/wx-2.8/wx/msw/winundef.h
include/wx-2.8/wx/msw/wrapcctl.h
include/wx-2.8/wx/msw/wrapcdlg.h
include/wx-2.8/wx/msw/wrapwin.h
include/wx-2.8/wx/msw/wx.manifest
include/wx-2.8/wx/msw/wx.rc
include/wx-2.8/wx/notebook.h
include/wx-2.8/wx/numdlg.h
include/wx-2.8/wx/object.h
include/wx-2.8/wx/odcombo.h
include/wx-2.8/wx/overlay.h
include/wx-2.8/wx/ownerdrw.h
include/wx-2.8/wx/palette.h
include/wx-2.8/wx/panel.h
include/wx-2.8/wx/paper.h
include/wx-2.8/wx/pen.h
include/wx-2.8/wx/pickerbase.h
include/wx-2.8/wx/platform.h
include/wx-2.8/wx/platinfo.h
include/wx-2.8/wx/popupwin.h
include/wx-2.8/wx/power.h
include/wx-2.8/wx/print.h
include/wx-2.8/wx/printdlg.h
include/wx-2.8/wx/prntbase.h
include/wx-2.8/wx/process.h
include/wx-2.8/wx/progdlg.h
include/wx-2.8/wx/propdlg.h
include/wx-2.8/wx/protocol/file.h
include/wx-2.8/wx/protocol/ftp.h
include/wx-2.8/wx/protocol/http.h
include/wx-2.8/wx/protocol/protocol.h
include/wx-2.8/wx/ptr_scpd.h
include/wx-2.8/wx/quantize.h
include/wx-2.8/wx/radiobox.h
include/wx-2.8/wx/radiobut.h
include/wx-2.8/wx/rawbmp.h
include/wx-2.8/wx/recguard.h
include/wx-2.8/wx/regex.h
include/wx-2.8/wx/region.h
include/wx-2.8/wx/renderer.h
include/wx-2.8/wx/richtext/richtextbuffer.h
include/wx-2.8/wx/richtext/richtextctrl.h
include/wx-2.8/wx/richtext/richtextformatdlg.h
include/wx-2.8/wx/richtext/richtexthtml.h
include/wx-2.8/wx/richtext/richtextprint.h
include/wx-2.8/wx/richtext/richtextstyledlg.h
include/wx-2.8/wx/richtext/richtextstyles.h
include/wx-2.8/wx/richtext/richtextsymboldlg.h
include/wx-2.8/wx/richtext/richtextxml.h
include/wx-2.8/wx/sashwin.h
include/wx-2.8/wx/sckaddr.h
include/wx-2.8/wx/sckipc.h
include/wx-2.8/wx/sckstrm.h
include/wx-2.8/wx/scopeguard.h
include/wx-2.8/wx/scrolbar.h
include/wx-2.8/wx/scrolwin.h
include/wx-2.8/wx/selstore.h
include/wx-2.8/wx/settings.h
include/wx-2.8/wx/sizer.h
include/wx-2.8/wx/slider.h
include/wx-2.8/wx/snglinst.h
include/wx-2.8/wx/socket.h
include/wx-2.8/wx/sound.h
include/wx-2.8/wx/spinbutt.h
include/wx-2.8/wx/spinctrl.h
include/wx-2.8/wx/splash.h
include/wx-2.8/wx/splitter.h
include/wx-2.8/wx/srchctrl.h
include/wx-2.8/wx/sstream.h
include/wx-2.8/wx/stack.h
include/wx-2.8/wx/stackwalk.h
include/wx-2.8/wx/statbmp.h
include/wx-2.8/wx/statbox.h
include/wx-2.8/wx/statline.h
include/wx-2.8/wx/stattext.h
include/wx-2.8/wx/statusbr.h
include/wx-2.8/wx/stdpaths.h
include/wx-2.8/wx/stockitem.h
include/wx-2.8/wx/stopwatch.h
include/wx-2.8/wx/strconv.h
include/wx-2.8/wx/stream.h
include/wx-2.8/wx/string.h
include/wx-2.8/wx/sysopt.h
include/wx-2.8/wx/tab.h
include/wx-2.8/wx/tabctrl.h
include/wx-2.8/wx/tarstrm.h
include/wx-2.8/wx/taskbar.h
include/wx-2.8/wx/tbarbase.h
include/wx-2.8/wx/textbuf.h
include/wx-2.8/wx/textctrl.h
include/wx-2.8/wx/textdlg.h
include/wx-2.8/wx/textfile.h
include/wx-2.8/wx/tglbtn.h
include/wx-2.8/wx/thread.h
include/wx-2.8/wx/thrimpl.cpp
include/wx-2.8/wx/timer.h
include/wx-2.8/wx/tipdlg.h
include/wx-2.8/wx/tipwin.h
include/wx-2.8/wx/tokenzr.h
include/wx-2.8/wx/toolbar.h
include/wx-2.8/wx/toolbook.h
include/wx-2.8/wx/tooltip.h
include/wx-2.8/wx/toplevel.h
include/wx-2.8/wx/treebase.h
include/wx-2.8/wx/treebook.h
include/wx-2.8/wx/treectrl.h
include/wx-2.8/wx/txtstrm.h
include/wx-2.8/wx/types.h
include/wx-2.8/wx/uri.h
include/wx-2.8/wx/url.h
include/wx-2.8/wx/utils.h
include/wx-2.8/wx/valgen.h
include/wx-2.8/wx/validate.h
include/wx-2.8/wx/valtext.h
include/wx-2.8/wx/variant.h
include/wx-2.8/wx/vector.h
include/wx-2.8/wx/version.h
include/wx-2.8/wx/vidmode.h
include/wx-2.8/wx/vlbox.h
include/wx-2.8/wx/vms_x_fix.h
include/wx-2.8/wx/volume.h
include/wx-2.8/wx/vscroll.h
include/wx-2.8/wx/wave.h
include/wx-2.8/wx/wfstream.h
include/wx-2.8/wx/window.h
include/wx-2.8/wx/wizard.h
include/wx-2.8/wx/wupdlock.h
include/wx-2.8/wx/wx.h
include/wx-2.8/wx/wxchar.h
include/wx-2.8/wx/wxhtml.h
include/wx-2.8/wx/wxprec.h
include/wx-2.8/wx/xml/xml.h
include/wx-2.8/wx/xpmdecod.h
include/wx-2.8/wx/xpmhand.h
include/wx-2.8/wx/xrc/xh_all.h
include/wx-2.8/wx/xrc/xh_animatctrl.h
include/wx-2.8/wx/xrc/xh_bmp.h
include/wx-2.8/wx/xrc/xh_bmpbt.h
include/wx-2.8/wx/xrc/xh_bmpcbox.h
include/wx-2.8/wx/xrc/xh_bttn.h
include/wx-2.8/wx/xrc/xh_cald.h
include/wx-2.8/wx/xrc/xh_chckb.h
include/wx-2.8/wx/xrc/xh_chckl.h
include/wx-2.8/wx/xrc/xh_choic.h
include/wx-2.8/wx/xrc/xh_choicbk.h
include/wx-2.8/wx/xrc/xh_clrpicker.h
include/wx-2.8/wx/xrc/xh_collpane.h
include/wx-2.8/wx/xrc/xh_combo.h
include/wx-2.8/wx/xrc/xh_datectrl.h
include/wx-2.8/wx/xrc/xh_dirpicker.h
include/wx-2.8/wx/xrc/xh_dlg.h
include/wx-2.8/wx/xrc/xh_filepicker.h
include/wx-2.8/wx/xrc/xh_fontpicker.h
include/wx-2.8/wx/xrc/xh_frame.h
include/wx-2.8/wx/xrc/xh_gauge.h
include/wx-2.8/wx/xrc/xh_gdctl.h
include/wx-2.8/wx/xrc/xh_grid.h
include/wx-2.8/wx/xrc/xh_html.h
include/wx-2.8/wx/xrc/xh_htmllbox.h
include/wx-2.8/wx/xrc/xh_hyperlink.h
include/wx-2.8/wx/xrc/xh_listb.h
include/wx-2.8/wx/xrc/xh_listbk.h
include/wx-2.8/wx/xrc/xh_listc.h
include/wx-2.8/wx/xrc/xh_mdi.h
include/wx-2.8/wx/xrc/xh_menu.h
include/wx-2.8/wx/xrc/xh_notbk.h
include/wx-2.8/wx/xrc/xh_odcombo.h
include/wx-2.8/wx/xrc/xh_panel.h
include/wx-2.8/wx/xrc/xh_propdlg.h
include/wx-2.8/wx/xrc/xh_radbt.h
include/wx-2.8/wx/xrc/xh_radbx.h
include/wx-2.8/wx/xrc/xh_scrol.h
include/wx-2.8/wx/xrc/xh_scwin.h
include/wx-2.8/wx/xrc/xh_sizer.h
include/wx-2.8/wx/xrc/xh_slidr.h
include/wx-2.8/wx/xrc/xh_spin.h
include/wx-2.8/wx/xrc/xh_split.h
include/wx-2.8/wx/xrc/xh_statbar.h
include/wx-2.8/wx/xrc/xh_stbmp.h
include/wx-2.8/wx/xrc/xh_stbox.h
include/wx-2.8/wx/xrc/xh_stlin.h
include/wx-2.8/wx/xrc/xh_sttxt.h
include/wx-2.8/wx/xrc/xh_text.h
include/wx-2.8/wx/xrc/xh_tglbtn.h
include/wx-2.8/wx/xrc/xh_toolb.h
include/wx-2.8/wx/xrc/xh_tree.h
include/wx-2.8/wx/xrc/xh_treebk.h
include/wx-2.8/wx/xrc/xh_unkwn.h
include/wx-2.8/wx/xrc/xh_wizrd.h
include/wx-2.8/wx/xrc/xmlres.h
include/wx-2.8/wx/xti.h
include/wx-2.8/wx/xtistrm.h
include/wx-2.8/wx/xtixml.h
include/wx-2.8/wx/zipstrm.h
include/wx-2.8/wx/zstream.h
lib/libwx_mswu-2.8.dll.a
lib/wx/config/msw-unicode-release-2.8
lib/wx/include/msw-unicode-release-2.8/wx/msw/rcdefs.h
lib/wx/include/msw-unicode-release-2.8/wx/setup.h
lib/wxmsw28u_gcc.dll
share/aclocal/wxwin.m4
share/bakefile/presets/wx.bkl
share/bakefile/presets/wx_unix.bkl
share/bakefile/presets/wx_win32.bkl


Compiling wxMSW into a Static, Monolithic Build


Although less ideal, building a static and monolithic library of wxMSW can simplify the build process of wxWidgets applications. For a static and monolithic build, I configured wxMSW with the following line:


../configure --prefix=/mingw --with-msw --disable-shared --enable-monolithic --enable-optimise --enable-intl --enable-mslu --enable-unicode --enable-official_build --without-subdirs --with-regex

Then, continue with make and make install. The following files are installed:


/bin/wx-config
/bin/wxrc-2.8
/bin/wxrc.exe
/include/wx-2.8/wx/aboutdlg.h
/include/wx-2.8/wx/accel.h
/include/wx-2.8/wx/access.h
/include/wx-2.8/wx/afterstd.h
/include/wx-2.8/wx/anidecod.h
/include/wx-2.8/wx/animate.h
/include/wx-2.8/wx/animdecod.h
/include/wx-2.8/wx/app.h
/include/wx-2.8/wx/apptrait.h
/include/wx-2.8/wx/archive.h
/include/wx-2.8/wx/arrimpl.cpp
/include/wx-2.8/wx/arrstr.h
/include/wx-2.8/wx/artprov.h
/include/wx-2.8/wx/aui/aui.h
/include/wx-2.8/wx/aui/auibar.h
/include/wx-2.8/wx/aui/auibook.h
/include/wx-2.8/wx/aui/dockart.h
/include/wx-2.8/wx/aui/floatpane.h
/include/wx-2.8/wx/aui/framemanager.h
/include/wx-2.8/wx/aui/tabmdi.h
/include/wx-2.8/wx/beforestd.h
/include/wx-2.8/wx/bitmap.h
/include/wx-2.8/wx/bmpbuttn.h
/include/wx-2.8/wx/bmpcbox.h
/include/wx-2.8/wx/bookctrl.h
/include/wx-2.8/wx/brush.h
/include/wx-2.8/wx/buffer.h
/include/wx-2.8/wx/build.h
/include/wx-2.8/wx/busyinfo.h
/include/wx-2.8/wx/button.h
/include/wx-2.8/wx/calctrl.h
/include/wx-2.8/wx/caret.h
/include/wx-2.8/wx/checkbox.h
/include/wx-2.8/wx/checklst.h
/include/wx-2.8/wx/chkconf.h
/include/wx-2.8/wx/choicdlg.h
/include/wx-2.8/wx/choice.h
/include/wx-2.8/wx/choicebk.h
/include/wx-2.8/wx/clipbrd.h
/include/wx-2.8/wx/clntdata.h
/include/wx-2.8/wx/clrpicker.h
/include/wx-2.8/wx/cmdline.h
/include/wx-2.8/wx/cmdproc.h
/include/wx-2.8/wx/cmndata.h
/include/wx-2.8/wx/collpane.h
/include/wx-2.8/wx/colordlg.h
/include/wx-2.8/wx/colour.h
/include/wx-2.8/wx/combo.h
/include/wx-2.8/wx/combobox.h
/include/wx-2.8/wx/confbase.h
/include/wx-2.8/wx/config.h
/include/wx-2.8/wx/containr.h
/include/wx-2.8/wx/control.h
/include/wx-2.8/wx/convauto.h
/include/wx-2.8/wx/cpp.h
/include/wx-2.8/wx/cshelp.h
/include/wx-2.8/wx/ctrlsub.h
/include/wx-2.8/wx/cursor.h
/include/wx-2.8/wx/dataobj.h
/include/wx-2.8/wx/dataview.h
/include/wx-2.8/wx/datectrl.h
/include/wx-2.8/wx/dateevt.h
/include/wx-2.8/wx/datetime.h
/include/wx-2.8/wx/datstrm.h
/include/wx-2.8/wx/db.h
/include/wx-2.8/wx/dbgrid.h
/include/wx-2.8/wx/dbkeyg.h
/include/wx-2.8/wx/dbtable.h
/include/wx-2.8/wx/dc.h
/include/wx-2.8/wx/dcbuffer.h
/include/wx-2.8/wx/dcclient.h
/include/wx-2.8/wx/dcgraph.h
/include/wx-2.8/wx/dcmemory.h
/include/wx-2.8/wx/dcmirror.h
/include/wx-2.8/wx/dcprint.h
/include/wx-2.8/wx/dcps.h
/include/wx-2.8/wx/dcscreen.h
/include/wx-2.8/wx/dde.h
/include/wx-2.8/wx/debug.h
/include/wx-2.8/wx/debugrpt.h
/include/wx-2.8/wx/defs.h
/include/wx-2.8/wx/dialog.h
/include/wx-2.8/wx/dialup.h
/include/wx-2.8/wx/dir.h
/include/wx-2.8/wx/dirctrl.h
/include/wx-2.8/wx/dirdlg.h
/include/wx-2.8/wx/display.h
/include/wx-2.8/wx/display_impl.h
/include/wx-2.8/wx/dlimpexp.h
/include/wx-2.8/wx/dnd.h
/include/wx-2.8/wx/docmdi.h
/include/wx-2.8/wx/docview.h
/include/wx-2.8/wx/dragimag.h
/include/wx-2.8/wx/dynarray.h
/include/wx-2.8/wx/dynlib.h
/include/wx-2.8/wx/dynload.h
/include/wx-2.8/wx/effects.h
/include/wx-2.8/wx/encconv.h
/include/wx-2.8/wx/encinfo.h
/include/wx-2.8/wx/event.h
/include/wx-2.8/wx/evtloop.h
/include/wx-2.8/wx/except.h
/include/wx-2.8/wx/fdrepdlg.h
/include/wx-2.8/wx/features.h
/include/wx-2.8/wx/ffile.h
/include/wx-2.8/wx/file.h
/include/wx-2.8/wx/fileconf.h
/include/wx-2.8/wx/filedlg.h
/include/wx-2.8/wx/filefn.h
/include/wx-2.8/wx/filename.h
/include/wx-2.8/wx/filepicker.h
/include/wx-2.8/wx/filesys.h
/include/wx-2.8/wx/fmappriv.h
/include/wx-2.8/wx/font.h
/include/wx-2.8/wx/fontdlg.h
/include/wx-2.8/wx/fontenc.h
/include/wx-2.8/wx/fontenum.h
/include/wx-2.8/wx/fontmap.h
/include/wx-2.8/wx/fontpicker.h
/include/wx-2.8/wx/fontutil.h
/include/wx-2.8/wx/frame.h
/include/wx-2.8/wx/fs_arc.h
/include/wx-2.8/wx/fs_filter.h
/include/wx-2.8/wx/fs_inet.h
/include/wx-2.8/wx/fs_mem.h
/include/wx-2.8/wx/fs_zip.h
/include/wx-2.8/wx/gauge.h
/include/wx-2.8/wx/gbsizer.h
/include/wx-2.8/wx/gdicmn.h
/include/wx-2.8/wx/gdiobj.h
/include/wx-2.8/wx/generic/aboutdlgg.h
/include/wx-2.8/wx/generic/accel.h
/include/wx-2.8/wx/generic/animate.h
/include/wx-2.8/wx/generic/bmpcbox.h
/include/wx-2.8/wx/generic/busyinfo.h
/include/wx-2.8/wx/generic/buttonbar.h
/include/wx-2.8/wx/generic/calctrl.h
/include/wx-2.8/wx/generic/choicdgg.h
/include/wx-2.8/wx/generic/clrpickerg.h
/include/wx-2.8/wx/generic/collpaneg.h
/include/wx-2.8/wx/generic/colrdlgg.h
/include/wx-2.8/wx/generic/combo.h
/include/wx-2.8/wx/generic/dataview.h
/include/wx-2.8/wx/generic/datectrl.h
/include/wx-2.8/wx/generic/dcpsg.h
/include/wx-2.8/wx/generic/dirctrlg.h
/include/wx-2.8/wx/generic/dragimgg.h
/include/wx-2.8/wx/generic/filedlgg.h
/include/wx-2.8/wx/generic/filepickerg.h
/include/wx-2.8/wx/generic/fontdlgg.h
/include/wx-2.8/wx/generic/fontpickerg.h
/include/wx-2.8/wx/generic/grid.h
/include/wx-2.8/wx/generic/gridctrl.h
/include/wx-2.8/wx/generic/gridsel.h
/include/wx-2.8/wx/generic/helpext.h
/include/wx-2.8/wx/generic/laywin.h
/include/wx-2.8/wx/generic/logg.h
/include/wx-2.8/wx/generic/msgdlgg.h
/include/wx-2.8/wx/generic/notebook.h
/include/wx-2.8/wx/generic/numdlgg.h
/include/wx-2.8/wx/generic/panelg.h
/include/wx-2.8/wx/generic/printps.h
/include/wx-2.8/wx/generic/prntdlgg.h
/include/wx-2.8/wx/generic/progdlgg.h
/include/wx-2.8/wx/generic/propdlg.h
/include/wx-2.8/wx/generic/sashwin.h
/include/wx-2.8/wx/generic/scrolwin.h
/include/wx-2.8/wx/generic/spinctlg.h
/include/wx-2.8/wx/generic/splash.h
/include/wx-2.8/wx/generic/splitter.h
/include/wx-2.8/wx/generic/srchctlg.h
/include/wx-2.8/wx/generic/textdlgg.h
/include/wx-2.8/wx/generic/timer.h
/include/wx-2.8/wx/generic/treectlg.h
/include/wx-2.8/wx/generic/wizard.h
/include/wx-2.8/wx/geometry.h
/include/wx-2.8/wx/gifdecod.h
/include/wx-2.8/wx/glcanvas.h
/include/wx-2.8/wx/graphics.h
/include/wx-2.8/wx/grid.h
/include/wx-2.8/wx/gsocket.h
/include/wx-2.8/wx/hash.h
/include/wx-2.8/wx/hashmap.h
/include/wx-2.8/wx/hashset.h
/include/wx-2.8/wx/help.h
/include/wx-2.8/wx/helpbase.h
/include/wx-2.8/wx/helphtml.h
/include/wx-2.8/wx/helpwin.h
/include/wx-2.8/wx/html/forcelnk.h
/include/wx-2.8/wx/html/helpctrl.h
/include/wx-2.8/wx/html/helpdata.h
/include/wx-2.8/wx/html/helpdlg.h
/include/wx-2.8/wx/html/helpfrm.h
/include/wx-2.8/wx/html/helpwnd.h
/include/wx-2.8/wx/html/htmlcell.h
/include/wx-2.8/wx/html/htmldefs.h
/include/wx-2.8/wx/html/htmlfilt.h
/include/wx-2.8/wx/html/htmlpars.h
/include/wx-2.8/wx/html/htmlproc.h
/include/wx-2.8/wx/html/htmltag.h
/include/wx-2.8/wx/html/htmlwin.h
/include/wx-2.8/wx/html/htmprint.h
/include/wx-2.8/wx/html/m_templ.h
/include/wx-2.8/wx/html/winpars.h
/include/wx-2.8/wx/htmllbox.h
/include/wx-2.8/wx/hyperlink.h
/include/wx-2.8/wx/icon.h
/include/wx-2.8/wx/iconbndl.h
/include/wx-2.8/wx/iconloc.h
/include/wx-2.8/wx/imagbmp.h
/include/wx-2.8/wx/image.h
/include/wx-2.8/wx/imaggif.h
/include/wx-2.8/wx/imagiff.h
/include/wx-2.8/wx/imagjpeg.h
/include/wx-2.8/wx/imaglist.h
/include/wx-2.8/wx/imagpcx.h
/include/wx-2.8/wx/imagpng.h
/include/wx-2.8/wx/imagpnm.h
/include/wx-2.8/wx/imagtga.h
/include/wx-2.8/wx/imagtiff.h
/include/wx-2.8/wx/imagxpm.h
/include/wx-2.8/wx/init.h
/include/wx-2.8/wx/intl.h
/include/wx-2.8/wx/iosfwrap.h
/include/wx-2.8/wx/ioswrap.h
/include/wx-2.8/wx/ipc.h
/include/wx-2.8/wx/ipcbase.h
/include/wx-2.8/wx/isql.h
/include/wx-2.8/wx/isqlext.h
/include/wx-2.8/wx/joystick.h
/include/wx-2.8/wx/layout.h
/include/wx-2.8/wx/laywin.h
/include/wx-2.8/wx/link.h
/include/wx-2.8/wx/list.h
/include/wx-2.8/wx/listbase.h
/include/wx-2.8/wx/listbook.h
/include/wx-2.8/wx/listbox.h
/include/wx-2.8/wx/listctrl.h
/include/wx-2.8/wx/listimpl.cpp
/include/wx-2.8/wx/log.h
/include/wx-2.8/wx/longlong.h
/include/wx-2.8/wx/math.h
/include/wx-2.8/wx/matrix.h
/include/wx-2.8/wx/mdi.h
/include/wx-2.8/wx/mediactrl.h
/include/wx-2.8/wx/memconf.h
/include/wx-2.8/wx/memory.h
/include/wx-2.8/wx/memtext.h
/include/wx-2.8/wx/menu.h
/include/wx-2.8/wx/menuitem.h
/include/wx-2.8/wx/metafile.h
/include/wx-2.8/wx/mimetype.h
/include/wx-2.8/wx/minifram.h
/include/wx-2.8/wx/module.h
/include/wx-2.8/wx/msgdlg.h
/include/wx-2.8/wx/msgout.h
/include/wx-2.8/wx/mstream.h
/include/wx-2.8/wx/msw/accel.h
/include/wx-2.8/wx/msw/amd64.manifest
/include/wx-2.8/wx/msw/app.h
/include/wx-2.8/wx/msw/apptbase.h
/include/wx-2.8/wx/msw/apptrait.h
/include/wx-2.8/wx/msw/bitmap.h
/include/wx-2.8/wx/msw/blank.cur
/include/wx-2.8/wx/msw/bmpbuttn.h
/include/wx-2.8/wx/msw/brush.h
/include/wx-2.8/wx/msw/bullseye.cur
/include/wx-2.8/wx/msw/button.h
/include/wx-2.8/wx/msw/caret.h
/include/wx-2.8/wx/msw/cdrom.ico
/include/wx-2.8/wx/msw/checkbox.h
/include/wx-2.8/wx/msw/checklst.h
/include/wx-2.8/wx/msw/child.ico
/include/wx-2.8/wx/msw/chkconf.h
/include/wx-2.8/wx/msw/choice.h
/include/wx-2.8/wx/msw/clipbrd.h
/include/wx-2.8/wx/msw/colordlg.h
/include/wx-2.8/wx/msw/colour.h
/include/wx-2.8/wx/msw/colours.bmp
/include/wx-2.8/wx/msw/combo.h
/include/wx-2.8/wx/msw/combobox.h
/include/wx-2.8/wx/msw/computer.ico
/include/wx-2.8/wx/msw/control.h
/include/wx-2.8/wx/msw/crashrpt.h
/include/wx-2.8/wx/msw/cross.cur
/include/wx-2.8/wx/msw/csquery.bmp
/include/wx-2.8/wx/msw/cursor.h
/include/wx-2.8/wx/msw/datectrl.h
/include/wx-2.8/wx/msw/dc.h
/include/wx-2.8/wx/msw/dcclient.h
/include/wx-2.8/wx/msw/dcmemory.h
/include/wx-2.8/wx/msw/dcprint.h
/include/wx-2.8/wx/msw/dcscreen.h
/include/wx-2.8/wx/msw/dde.h
/include/wx-2.8/wx/msw/debughlp.h
/include/wx-2.8/wx/msw/dialog.h
/include/wx-2.8/wx/msw/dib.h
/include/wx-2.8/wx/msw/dirdlg.h
/include/wx-2.8/wx/msw/dragimag.h
/include/wx-2.8/wx/msw/drive.ico
/include/wx-2.8/wx/msw/enhmeta.h
/include/wx-2.8/wx/msw/evtloop.h
/include/wx-2.8/wx/msw/fdrepdlg.h
/include/wx-2.8/wx/msw/file1.ico
/include/wx-2.8/wx/msw/filedlg.h
/include/wx-2.8/wx/msw/floppy.ico
/include/wx-2.8/wx/msw/folder1.ico
/include/wx-2.8/wx/msw/folder2.ico
/include/wx-2.8/wx/msw/font.h
/include/wx-2.8/wx/msw/fontdlg.h
/include/wx-2.8/wx/msw/frame.h
/include/wx-2.8/wx/msw/gauge95.h
/include/wx-2.8/wx/msw/gccpriv.h
/include/wx-2.8/wx/msw/gdiimage.h
/include/wx-2.8/wx/msw/glcanvas.h
/include/wx-2.8/wx/msw/gsockmsw.h
/include/wx-2.8/wx/msw/hand.cur
/include/wx-2.8/wx/msw/helpbest.h
/include/wx-2.8/wx/msw/helpchm.h
/include/wx-2.8/wx/msw/helpwin.h
/include/wx-2.8/wx/msw/htmlhelp.h
/include/wx-2.8/wx/msw/ia64.manifest
/include/wx-2.8/wx/msw/icon.h
/include/wx-2.8/wx/msw/imaglist.h
/include/wx-2.8/wx/msw/iniconf.h
/include/wx-2.8/wx/msw/joystick.h
/include/wx-2.8/wx/msw/libraries.h
/include/wx-2.8/wx/msw/listbox.h
/include/wx-2.8/wx/msw/listctrl.h
/include/wx-2.8/wx/msw/magnif1.cur
/include/wx-2.8/wx/msw/mdi.h
/include/wx-2.8/wx/msw/mdi.ico
/include/wx-2.8/wx/msw/menu.h
/include/wx-2.8/wx/msw/menuitem.h
/include/wx-2.8/wx/msw/metafile.h
/include/wx-2.8/wx/msw/mimetype.h
/include/wx-2.8/wx/msw/minifram.h
/include/wx-2.8/wx/msw/missing.h
/include/wx-2.8/wx/msw/msgdlg.h
/include/wx-2.8/wx/msw/mslu.h
/include/wx-2.8/wx/msw/msvcrt.h
/include/wx-2.8/wx/msw/notebook.h
/include/wx-2.8/wx/msw/ole/access.h
/include/wx-2.8/wx/msw/ole/activex.h
/include/wx-2.8/wx/msw/ole/automtn.h
/include/wx-2.8/wx/msw/ole/dataform.h
/include/wx-2.8/wx/msw/ole/dataobj.h
/include/wx-2.8/wx/msw/ole/dataobj2.h
/include/wx-2.8/wx/msw/ole/dropsrc.h
/include/wx-2.8/wx/msw/ole/droptgt.h
/include/wx-2.8/wx/msw/ole/oleutils.h
/include/wx-2.8/wx/msw/ole/uuid.h
/include/wx-2.8/wx/msw/palette.h
/include/wx-2.8/wx/msw/pbrush.cur
/include/wx-2.8/wx/msw/pen.h
/include/wx-2.8/wx/msw/pencil.cur
/include/wx-2.8/wx/msw/pntleft.cur
/include/wx-2.8/wx/msw/pntright.cur
/include/wx-2.8/wx/msw/popupwin.h
/include/wx-2.8/wx/msw/printdlg.h
/include/wx-2.8/wx/msw/printwin.h
/include/wx-2.8/wx/msw/private.h
/include/wx-2.8/wx/msw/question.ico
/include/wx-2.8/wx/msw/radiobox.h
/include/wx-2.8/wx/msw/radiobut.h
/include/wx-2.8/wx/msw/rcdefs.h
/include/wx-2.8/wx/msw/regconf.h
/include/wx-2.8/wx/msw/region.h
/include/wx-2.8/wx/msw/registry.h
/include/wx-2.8/wx/msw/removble.ico
/include/wx-2.8/wx/msw/rightarr.cur
/include/wx-2.8/wx/msw/roller.cur
/include/wx-2.8/wx/msw/scrolbar.h
/include/wx-2.8/wx/msw/seh.h
/include/wx-2.8/wx/msw/setup0.h
/include/wx-2.8/wx/msw/slider95.h
/include/wx-2.8/wx/msw/sound.h
/include/wx-2.8/wx/msw/spinbutt.h
/include/wx-2.8/wx/msw/spinctrl.h
/include/wx-2.8/wx/msw/stackwalk.h
/include/wx-2.8/wx/msw/statbmp.h
/include/wx-2.8/wx/msw/statbox.h
/include/wx-2.8/wx/msw/statbr95.h
/include/wx-2.8/wx/msw/statline.h
/include/wx-2.8/wx/msw/stattext.h
/include/wx-2.8/wx/msw/std.ico
/include/wx-2.8/wx/msw/stdpaths.h
/include/wx-2.8/wx/msw/tabctrl.h
/include/wx-2.8/wx/msw/taskbar.h
/include/wx-2.8/wx/msw/tbar95.h
/include/wx-2.8/wx/msw/textctrl.h
/include/wx-2.8/wx/msw/tglbtn.h
/include/wx-2.8/wx/msw/timer.h
/include/wx-2.8/wx/msw/tooltip.h
/include/wx-2.8/wx/msw/toplevel.h
/include/wx-2.8/wx/msw/treectrl.h
/include/wx-2.8/wx/msw/uxtheme.h
/include/wx-2.8/wx/msw/uxthemep.h
/include/wx-2.8/wx/msw/window.h
/include/wx-2.8/wx/msw/winundef.h
/include/wx-2.8/wx/msw/wrapcctl.h
/include/wx-2.8/wx/msw/wrapcdlg.h
/include/wx-2.8/wx/msw/wrapwin.h
/include/wx-2.8/wx/msw/wx.manifest
/include/wx-2.8/wx/msw/wx.rc
/include/wx-2.8/wx/notebook.h
/include/wx-2.8/wx/numdlg.h
/include/wx-2.8/wx/object.h
/include/wx-2.8/wx/odcombo.h
/include/wx-2.8/wx/overlay.h
/include/wx-2.8/wx/ownerdrw.h
/include/wx-2.8/wx/palette.h
/include/wx-2.8/wx/panel.h
/include/wx-2.8/wx/paper.h
/include/wx-2.8/wx/pen.h
/include/wx-2.8/wx/pickerbase.h
/include/wx-2.8/wx/platform.h
/include/wx-2.8/wx/platinfo.h
/include/wx-2.8/wx/popupwin.h
/include/wx-2.8/wx/power.h
/include/wx-2.8/wx/print.h
/include/wx-2.8/wx/printdlg.h
/include/wx-2.8/wx/prntbase.h
/include/wx-2.8/wx/process.h
/include/wx-2.8/wx/progdlg.h
/include/wx-2.8/wx/propdlg.h
/include/wx-2.8/wx/protocol/file.h
/include/wx-2.8/wx/protocol/ftp.h
/include/wx-2.8/wx/protocol/http.h
/include/wx-2.8/wx/protocol/protocol.h
/include/wx-2.8/wx/ptr_scpd.h
/include/wx-2.8/wx/quantize.h
/include/wx-2.8/wx/radiobox.h
/include/wx-2.8/wx/radiobut.h
/include/wx-2.8/wx/rawbmp.h
/include/wx-2.8/wx/recguard.h
/include/wx-2.8/wx/regex.h
/include/wx-2.8/wx/region.h
/include/wx-2.8/wx/renderer.h
/include/wx-2.8/wx/richtext/richtextbuffer.h
/include/wx-2.8/wx/richtext/richtextctrl.h
/include/wx-2.8/wx/richtext/richtextformatdlg.h
/include/wx-2.8/wx/richtext/richtexthtml.h
/include/wx-2.8/wx/richtext/richtextprint.h
/include/wx-2.8/wx/richtext/richtextstyledlg.h
/include/wx-2.8/wx/richtext/richtextstyles.h
/include/wx-2.8/wx/richtext/richtextsymboldlg.h
/include/wx-2.8/wx/richtext/richtextxml.h
/include/wx-2.8/wx/sashwin.h
/include/wx-2.8/wx/sckaddr.h
/include/wx-2.8/wx/sckipc.h
/include/wx-2.8/wx/sckstrm.h
/include/wx-2.8/wx/scopeguard.h
/include/wx-2.8/wx/scrolbar.h
/include/wx-2.8/wx/scrolwin.h
/include/wx-2.8/wx/selstore.h
/include/wx-2.8/wx/settings.h
/include/wx-2.8/wx/sizer.h
/include/wx-2.8/wx/slider.h
/include/wx-2.8/wx/snglinst.h
/include/wx-2.8/wx/socket.h
/include/wx-2.8/wx/sound.h
/include/wx-2.8/wx/spinbutt.h
/include/wx-2.8/wx/spinctrl.h
/include/wx-2.8/wx/splash.h
/include/wx-2.8/wx/splitter.h
/include/wx-2.8/wx/srchctrl.h
/include/wx-2.8/wx/sstream.h
/include/wx-2.8/wx/stack.h
/include/wx-2.8/wx/stackwalk.h
/include/wx-2.8/wx/statbmp.h
/include/wx-2.8/wx/statbox.h
/include/wx-2.8/wx/statline.h
/include/wx-2.8/wx/stattext.h
/include/wx-2.8/wx/statusbr.h
/include/wx-2.8/wx/stdpaths.h
/include/wx-2.8/wx/stockitem.h
/include/wx-2.8/wx/stopwatch.h
/include/wx-2.8/wx/strconv.h
/include/wx-2.8/wx/stream.h
/include/wx-2.8/wx/string.h
/include/wx-2.8/wx/sysopt.h
/include/wx-2.8/wx/tab.h
/include/wx-2.8/wx/tabctrl.h
/include/wx-2.8/wx/tarstrm.h
/include/wx-2.8/wx/taskbar.h
/include/wx-2.8/wx/tbarbase.h
/include/wx-2.8/wx/textbuf.h
/include/wx-2.8/wx/textctrl.h
/include/wx-2.8/wx/textdlg.h
/include/wx-2.8/wx/textfile.h
/include/wx-2.8/wx/tglbtn.h
/include/wx-2.8/wx/thread.h
/include/wx-2.8/wx/thrimpl.cpp
/include/wx-2.8/wx/timer.h
/include/wx-2.8/wx/tipdlg.h
/include/wx-2.8/wx/tipwin.h
/include/wx-2.8/wx/tokenzr.h
/include/wx-2.8/wx/toolbar.h
/include/wx-2.8/wx/toolbook.h
/include/wx-2.8/wx/tooltip.h
/include/wx-2.8/wx/toplevel.h
/include/wx-2.8/wx/treebase.h
/include/wx-2.8/wx/treebook.h
/include/wx-2.8/wx/treectrl.h
/include/wx-2.8/wx/txtstrm.h
/include/wx-2.8/wx/types.h
/include/wx-2.8/wx/uri.h
/include/wx-2.8/wx/url.h
/include/wx-2.8/wx/utils.h
/include/wx-2.8/wx/valgen.h
/include/wx-2.8/wx/validate.h
/include/wx-2.8/wx/valtext.h
/include/wx-2.8/wx/variant.h
/include/wx-2.8/wx/vector.h
/include/wx-2.8/wx/version.h
/include/wx-2.8/wx/vidmode.h
/include/wx-2.8/wx/vlbox.h
/include/wx-2.8/wx/vms_x_fix.h
/include/wx-2.8/wx/volume.h
/include/wx-2.8/wx/vscroll.h
/include/wx-2.8/wx/wave.h
/include/wx-2.8/wx/wfstream.h
/include/wx-2.8/wx/window.h
/include/wx-2.8/wx/wizard.h
/include/wx-2.8/wx/wupdlock.h
/include/wx-2.8/wx/wx.h
/include/wx-2.8/wx/wxchar.h
/include/wx-2.8/wx/wxhtml.h
/include/wx-2.8/wx/wxprec.h
/include/wx-2.8/wx/xml/xml.h
/include/wx-2.8/wx/xpmdecod.h
/include/wx-2.8/wx/xpmhand.h
/include/wx-2.8/wx/xrc/xh_all.h
/include/wx-2.8/wx/xrc/xh_animatctrl.h
/include/wx-2.8/wx/xrc/xh_bmp.h
/include/wx-2.8/wx/xrc/xh_bmpbt.h
/include/wx-2.8/wx/xrc/xh_bmpcbox.h
/include/wx-2.8/wx/xrc/xh_bttn.h
/include/wx-2.8/wx/xrc/xh_cald.h
/include/wx-2.8/wx/xrc/xh_chckb.h
/include/wx-2.8/wx/xrc/xh_chckl.h
/include/wx-2.8/wx/xrc/xh_choic.h
/include/wx-2.8/wx/xrc/xh_choicbk.h
/include/wx-2.8/wx/xrc/xh_clrpicker.h
/include/wx-2.8/wx/xrc/xh_collpane.h
/include/wx-2.8/wx/xrc/xh_combo.h
/include/wx-2.8/wx/xrc/xh_datectrl.h
/include/wx-2.8/wx/xrc/xh_dirpicker.h
/include/wx-2.8/wx/xrc/xh_dlg.h
/include/wx-2.8/wx/xrc/xh_filepicker.h
/include/wx-2.8/wx/xrc/xh_fontpicker.h
/include/wx-2.8/wx/xrc/xh_frame.h
/include/wx-2.8/wx/xrc/xh_gauge.h
/include/wx-2.8/wx/xrc/xh_gdctl.h
/include/wx-2.8/wx/xrc/xh_grid.h
/include/wx-2.8/wx/xrc/xh_html.h
/include/wx-2.8/wx/xrc/xh_htmllbox.h
/include/wx-2.8/wx/xrc/xh_hyperlink.h
/include/wx-2.8/wx/xrc/xh_listb.h
/include/wx-2.8/wx/xrc/xh_listbk.h
/include/wx-2.8/wx/xrc/xh_listc.h
/include/wx-2.8/wx/xrc/xh_mdi.h
/include/wx-2.8/wx/xrc/xh_menu.h
/include/wx-2.8/wx/xrc/xh_notbk.h
/include/wx-2.8/wx/xrc/xh_odcombo.h
/include/wx-2.8/wx/xrc/xh_panel.h
/include/wx-2.8/wx/xrc/xh_propdlg.h
/include/wx-2.8/wx/xrc/xh_radbt.h
/include/wx-2.8/wx/xrc/xh_radbx.h
/include/wx-2.8/wx/xrc/xh_scrol.h
/include/wx-2.8/wx/xrc/xh_scwin.h
/include/wx-2.8/wx/xrc/xh_sizer.h
/include/wx-2.8/wx/xrc/xh_slidr.h
/include/wx-2.8/wx/xrc/xh_spin.h
/include/wx-2.8/wx/xrc/xh_split.h
/include/wx-2.8/wx/xrc/xh_statbar.h
/include/wx-2.8/wx/xrc/xh_stbmp.h
/include/wx-2.8/wx/xrc/xh_stbox.h
/include/wx-2.8/wx/xrc/xh_stlin.h
/include/wx-2.8/wx/xrc/xh_sttxt.h
/include/wx-2.8/wx/xrc/xh_text.h
/include/wx-2.8/wx/xrc/xh_tglbtn.h
/include/wx-2.8/wx/xrc/xh_toolb.h
/include/wx-2.8/wx/xrc/xh_tree.h
/include/wx-2.8/wx/xrc/xh_treebk.h
/include/wx-2.8/wx/xrc/xh_unkwn.h
/include/wx-2.8/wx/xrc/xh_wizrd.h
/include/wx-2.8/wx/xrc/xmlres.h
/include/wx-2.8/wx/xti.h
/include/wx-2.8/wx/xtistrm.h
/include/wx-2.8/wx/xtixml.h
/include/wx-2.8/wx/zipstrm.h
/include/wx-2.8/wx/zstream.h
/lib/libwx_mswu-2.8.a
/lib/libwxjpeg-2.8.a
/lib/libwxpng-2.8.a
/lib/libwxregexu-2.8.a
/lib/libwxtiff-2.8.a
/lib/wx/config/msw-unicode-release-static-2.8
/lib/wx/include/msw-unicode-release-static-2.8/wx/msw/rcdefs.h
/lib/wx/include/msw-unicode-release-static-2.8/wx/setup.h
/share/aclocal/wxwin.m4
/share/bakefile/presets/wx.bkl
/share/bakefile/presets/wx_unix.bkl
/share/bakefile/presets/wx_win32.bkl

No comments:

Post a Comment

About This Blog

KBlog logo This blog seeks to provide a collection of interesting pictures found on the Web. Thanks for visiting the blog and posting your comments.

© Contents by KBlog

© Blogger template by Emporium Digital 2008

Followers

Total Pageviews

Powered By Blogger