开发者

How to set predefined macros in Code::Blocks

Is there a way to set some predefined Macros for my local installation of Code::Blocks.

To elaborate on that, basically I would like to have certain blocks compiled only at pc and not anyplace I send the code to. One way to achieve this is as follows:

#define MYPC
#ifdef MYPC
 //do something
#else
 // do something else
#endif

I was to achieve the same thing, but I don't want to include the line #define MYPC and woud like to add this somewhere in the IDE. I know how to do this in Visual Studi开发者_StackOverflowo, and I think it also exists in Code::Blocks as well. Thanks.


Project - Properties - Project's build options - Compiler Settings - #defines.

Edit. Example of #defines edit box:

CONSTANT1
CONSTANT2="0"

Gives the following command line:

g++ -DCONSTANT1 -DCONSTANT2="0" ...

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜