User forums > Using Code::Blocks
Global Variable Use
BlueHazzard:
OK so this is a wxWidgets problem for you?
The next time you post some information like build logs, or configuration files, please use code tags (the # symbol in the forum editor) This will make reading your post a LOT easier...
BlueHazzard:
--- Quote ---I built one debug and one release. I moved the folder from wxWidgets-3.0.4\build\msw\gcc_lib\
to wxWidgets-3.0.4\lib\ and renamed it to wxBuild_debug. And one called wxBuild_release.
--- End quote ---
This will not work...
Codeblocks needs the default folder structure to work properly...
So If you want to copy the things to different folders for the library, you have to move the whole lib folder with all its sub structures...
lets say the original path is like this
--- Code: ---\wxWidgets-3.1.3\lib\gcc_dll\wxmsw313u_gcc_custom.dll
--- End code ---
then your new folder should be like this
--- Code: ---\wxWidgets-3.1.3\MYOWNFOLDERNAME\lib\gcc_dll\wxmsw313u_gcc_custom.dll
--- End code ---
and then point the global variable for library to
--- Code: ---\wxWidgets-3.1.3\MYOWNFOLDERNAME\lib
--- End code ---
so the
--- Code: ---gcc_dll\
--- End code ---
part is needed
stahta01:
FYI: This user is editing config.gcc instead of passing different option when doing make.
And, they refuse to not do it that way on the wxForum website.
I have no idea what problems this will create using the CB wxWidgets wizard.
Tim S.
BlueHazzard:
Also on windows the build process with the normal mingw makefile is quite painless and for me worked better than the configure process...
i use
--- Code: ---wxWidgets-3.1.3\build\msw\mingw32-make.exe -f makefile.gcc BUILD=debug MONOLITHIC=1 SHARED=1
--- End code ---
@stahta01: i was wondering what configure file this is :)
stahta01:
They think editing build/msw/config.gcc is correct.
I have seen others do it; but, they did it for only a single build type.
I am thinking trying to do two different build types must result in problems that are rarely seen.
Tim S.
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version