Saturday, December 26, 2009

Maya Shelf

Hold "CTRL + SHIFT + Element to add" to add icons to the custom shelf
Hold "SHIFT+ ALT+ Element to add" to add icons to the custom shelf in Linux

Wednesday, December 9, 2009

Compiling wxWidgets using mingw32-make

Some months ago I showed you how to compile wxWidgets using the ./configure method. Today I've tried to compile it using mingw32-make so here it is:

First let's set the path to our mingw and mingw32 bin directories:
set path=D:\MinGW\mingw\bin;c:\MinGW\mingw\mingw32\bin;
 
Next we enter in our WXWIDGETS\build\msw directory and type the following statement:
mingw32-make -f makefile.gcc SHARED=1 MONOLITHIC=1 BUILD=debug UNICODE=1
And that's it!