" 1. $(#cb) pointing to Code::Blocks base dir (where CodeBlocks.cbp is)\n" +
" 2. $(#wx) pointing to wxWidgets base directory\n\n\n");
I have set cb pointing to the folder trunk\src where codeblocks.cbp resides.
I have set wx, wx31 and wx31_64 pointing to \wxWidgets.
Now I create a clean Tool Plugin with a name I never used before and move to Project | Build Options | Search Directories (the plugin does not compile as is).
Search Directories | Compiler | default shows:
$(#wx31.include)
$(#wx31.lib)\gcc_dll\mswu
Search Directories | Linker | default shows:
$(#wx31.lib)\gcc_dll
$(#cb)\devel30
I change the latter to $(#cb)\devel31_64 and it builds.
The only thing realy wrong here seems the "$(#cb)\devel30" string as I have installed wx31_64.
The other issues here vanished when I had all wx-variables point to the same folder. I had figured wrongly that 'wx' was the generic variable which was going to make our lives easier when new wxWidgeds come along. I'll have to change all projects Build Options each time that happens. Bummer!