Is there a Delphi equivalent of the C# #if(DEBUG) compiler directive?
|
|
|
|
|
|
|
Use this:
|
||
|
|
|
DebugHook is set if an application is running under the IDE debugger. Not the same as a compiler directive but still pretty useful. For example:
|
||
|
|
|
|
These control directives are available:
and they can be used as shown here:
|
||
|
|
|
|
Apart from what lassevk said, you can also use a few other methods of compiler-evaluation (since Delphi 6, I believe) :
To check if the compiler has this feature, use :
There are several uses for this. For example, you could check the version of the RTL; From the Delphi help :
Also, the compiler version itself can be checked, again from the code:
Another thing I do regularly, is define a symbol when it's not defined yet (nice for forward-compatiblity), like this :
Hope this helps! |
|||
|
|
