I have seen in many codes that structure like following is using :
#ifdef something
...
#endif
Where can I set up "something"? I use CodeBlocks. Thank you!
I have seen in many codes that structure like following is using :
#ifdef something
...
#endif
Where can I set up "something"? I use CodeBlocks. Thank you!
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | turmax | 3559 |
| 6 | tourist | 3541 |
| 7 | strapple | 3515 |
| 8 | ksun48 | 3461 |
| 9 | dXqwq | 3436 |
| 10 | Otomachi_Una | 3413 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 157 |
| 2 | adamant | 153 |
| 3 | Um_nik | 147 |
| 3 | Proof_by_QED | 147 |
| 5 | Dominater069 | 145 |
| 6 | errorgorn | 141 |
| 7 | cry | 139 |
| 8 | YuukiS | 135 |
| 9 | TheScrasse | 134 |
| 10 | chromate00 | 133 |
| Name |
|---|



This can be done in the compiler settings of your IDE. Usually they allow you to pass some arguments to the compiler invocation. You need to pass the argument:
-D something
you could enable by putting #define something 1 before that #ifdef :
This is a simple example for
#ifdef,#ifndefand#elseyou can also have#elifwhich works likeelse ifand there is#ifthat works likeif;For Codeblocks: Settings -> Compiler.
If you invoke gcc manually:
g++ -DSOMETHING ...