How to find out all conditional definitions in a project

How can I see all the conditional definitions for a Delphi project?

I can define something in the project settings, but there are some “default values”, and I don’t know where to look. You can help?

+1
source share
1 answer

Here are the sources of conditional definitions that I can think of:

  • Predefined conventions.
  • Symbols indicated in the project parameters.
  • Conventions indicated on the command line.
  • Symbols specified in the source code (often in .inc files).

Now, I think, you are asking about element 1 in this list, predefined conventions. The Delphi documentation contains comprehensive lists:

  • .
  • .
+5

All Articles