Sorry i'm a newbie about cb sdk. I searched on doxygen doc and around some include files but i can't find which are hte right compiler id for visual c++, open watcom and borland c++. (i've guessed gcc and digital mars, seems to be gcc and dmc)
Thanks in advance.
IIRC msvctk, ow and bcc.
The ids are initialized in each compiler's constructor, so take a look yourself :)
My wxSensitive project wizard works :P It checks for compiled wx libraries and add automatically a target for each compiled version :P
I have another question: how can i add some strings to "#define" panel of project build options/compiler ?
Quote from: Trikko on June 16, 2006, 06:58:08 PM
I have another question: how can i add some strings to "#define" panel of project build options/compiler ?
AddCompilerOption("-Dxyz")
Last two then i've finished my lovely wizard :P
My wizard add a number of target if wx is compiled. (for example if you have compiled wx as static release using gcc and dmc it adds Release - Gcc and Release - Dmc). But targets never compile files cpp and rc. I try with project.AddFile(...,true,true...) but has no effect on target.
If i have to add some params to linker and/or compiler that depend by name of file we are compiling and/or the name of the object that compiler create. How can i do?
Thanks again...