如何知道项目中的所有条件定义

如何知道项目中的所有条件定义

本文介绍了如何知道项目中的所有条件定义的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何看到Delphi项目的所有条件定义?

How it is possible to see all the conditional defines for a Delphi project?

我可以在项目选项中定义某些内容,但是有一些默认值,我不知道在哪里寻找。您能帮忙吗?

I can define something in project options, but there are some "defaults" and I don't know where to look for. Can you help?

推荐答案

以下是我可以想到的条件定义的来源:

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


  1. 预定义的条件。

  2. 项目选项中指定的条件。

  3. 在命令行上指定条件。

  4. 在源代码中指定的条件(通常在.inc文件中)。

  1. The pre-defined conditionals.
  2. The conditionals specified in the project options.
  3. The conditionals specified at the command line.
  4. The conditionals specified in the source code (often in .inc files).

现在,我想您是在询问此列表中的项目1,即预定义的条件。 Delphi文档包含以下内容的完整列表:

Now, I think you are asking about item 1 on this list, the pre-defined conditionals. The Delphi documentation has a comprehensive lists of these:




  • Predefined Conditionals.
  • Compiler Versions.

这篇关于如何知道项目中的所有条件定义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 07:08