Compiling wxArt2D with MinGW non unix fashion

You already have installed MinGW.

You first need to install MinGW. (MSYS is not needed with this method, and should not be used in any way). You need to work with a DOS box. All paths are meant to be the DOS way, check them within the DOS shell. Be aware that MinGW has both ways of building available, do not mix up those two. So for Unix like builds use MSYS shell, and DOS build use DOS box. See MinGWMSys.

Download latest cmake, wxWidgets, and checkout from CVS wxArt2D.

wxWidgets install

From within a DOS box:

If your not in a hurry, right away do all other:

Be carefull with the shared versions. Next with the same lines as above goto, and compile the stc library:

In the you will have compiled wxWidget libraries in:

And for shared:

wxArt2D

Open DOS box and set WXWIN variable. Next extend path to cmake binaries. After that start cmake-gui.

set WXWIN=c:\pathToMywxWidgetsForMingw\wxWidgets2.8.10
PATH=c:\pathToCmake\cmake\bin;%PATH%
cmake-gui

After starting cmake-gui, you will be asked for the type of generator. Choose MinGW Makefiles. Do not choose MSYS Mekfiles, since that is the unix way, see MinGWMSys. After this you see the interface, choose the source directory of wxArt2D, and choose a new build directory. For example:

 Where is the source directory: C:/tools/MinGW/wxArt2D
 Where to build the binaries: C:/tools/MinGW/buildwxArt2DDebug

Press configure button, Many things turn red, and its start yelling, does not matter.

First make sure you set the options right (switch on or off):

These are the settings for the static, monolithic, debug and non unicode of wxWidgets, which you compiled above. (Those settings need to fit the wxWidgets compile settings, else you will continue with errors, meaning wxWidgets libraries not found ). Of course other settings and compilations can be generated later in their/your own wxArt2D build directories.

And now press configure again (maybe serveral times untill all whats red is gone, and no more erros are shown). Continue with generate when all is well.

All is set, and we are ready to compile wxArt2D.

cd C:/tools/MinGW/buildwxArt2DDebug
mingw-make

This uses the Makefile, which you find in cd C:/tools/MinGW/buildwxArt2DDebug. For release/unicode, you just choose another build directory in the cmake-gui, and the rest is the same. We always recommend outside source builds!