Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Plugins development => Topic started by: yop on February 04, 2006, 08:42:17 pm

Title: ProjectBuildTarget preprocessor defines
Post by: yop on February 04, 2006, 08:42:17 pm
How can I get them? I can see GetLibDirs, GetLibs, Get[Whatever] but what about the preprocessor defines (-D[somehing] for gcc)? I know that I'll say that I should have looked better when someone replies but for now I can't seem to find it :(
Title: Re: ProjectBuildTarget preprocessor defines
Post by: mandrav on February 04, 2006, 08:46:28 pm
#defines are not separate from other compiler options, so you would want to call GetCompilerOptions().
Title: Re: ProjectBuildTarget preprocessor defines
Post by: yop on February 04, 2006, 09:11:47 pm
Thanks :)