如何将 32 位和 64 位 DCU 编译到单独的目录中?

发布于 2024-12-19 18:43:23 字数 489 浏览 0 评论 0原文

我正在尝试维护一个存储库,我的代码库中的大多数内容都是源代码,但我们有 QuickPDF 库,它是一堆预编译的 DCU。我想以某种方式将它们放入版本控制中,但我不想为 win64 设置另一个选项,在将我的万亿 LOC 代码库的其余部分转换为 win64 之前,我会忘记这个选项。

我的想法只是拥有(quickPDF只是一个例子,除了不幸的预编译性之外,这个库没有什么特别的)

  • ctrls\quickpdf\QuickPDF.pas
  • ctrls\quickpdf\win32[*.dcu]
  • ctrls\quickpdf\win64[ *.dcu]

从 Program Files 中的文件夹来看,Embarcadero 与 VCL 做了类似的事情。那里甚至还有一些预编译的东西,比如 VCL.Imaging.JPEG.pas。

我该如何做同样的事情?我是否需要指定 win32 和 win64 文件夹,或者是否有一些我可以利用的魔法?

I'm trying to maintain one repository, most everything in my code base is source, but we've got the QuickPDF library which is a bunch of precompiled DCU's. I'd like to put them in version control somehow but I don't want to have yet another option set for win64 that I'm going to forget about before I convert the rest of my trillion LOC codebase to win64.

What I was thinking was just having (and quickPDF is just an example, there's nothing special about this library other than its unfortunate precompiledness)

  • ctrls\quickpdf\QuickPDF.pas
  • ctrls\quickpdf\win32[*.dcu]
  • ctrls\quickpdf\win64[*.dcu]

From the looks of the folders in Program Files, Embarcadero does something similar with the VCL. There are even some precompiled things there, like VCL.Imaging.JPEG.pas.

How do I do the same thing? Do I need to specify win32 and win64 folders, or is there some magic somewhere I can tap in to?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无人问我粥可暖 2024-12-26 18:43:23

您所谈论的魔力可以在普通 XE2 VCL Forms 应用程序的 .dproj 文件中看到。关键成分是这些变量:

  • $(Platform),它可以是 Windows 上的 Win32 或 Win64。
  • $(Config) 通常是“调试”或“发布”。

然后在 .dproj 文件中,以下 XML 发挥了魔力:

<PropertyGroup Condition="'$(Base)'!=''">
    <DCC_DcuOutput>.\$(Platform)\$(Config)</DCC_DcuOutput>
    <DCC_ExeOutput>.\$(Platform)\$(Config)</DCC_ExeOutput>
</PropertyGroup>

您可以将这些技巧与 $(Platform)$(Config) 变量以及任何项目选项一起使用。因此,您只需使用这些变量来设置编译器需要设置的任何选项即可找到预编译的 DCU。

据我所知,您需要设置的选项是搜索路径。尽管我承认对搜索路径的工作原理很模糊,因为我个人从不依赖搜索路径,并且总是明确地将所有源文件包含在我的项目中。在您的示例中,您将 ctrls\quickpdf\($Platform) 添加到搜索路径。

The magic you are talking about can be seen in the .dproj file for a plain vanilla XE2 VCL Forms app. The key ingredients are these variables:

  • $(Platform) which can be Win32 or Win64 on Windows.
  • $(Config) which is commonly either Debug or Release.

Then in the .dproj file the following XML performs the magic:

<PropertyGroup Condition="'$(Base)'!=''">
    <DCC_DcuOutput>.\$(Platform)\$(Config)</DCC_DcuOutput>
    <DCC_ExeOutput>.\$(Platform)\$(Config)</DCC_ExeOutput>
</PropertyGroup>

You can use such tricks with the $(Platform) and $(Config) variables with any of the project options. So you just need to use these variables to set whatever option needs to be set for the compiler to find your pre-compiled DCUs.

To the best of my knowledge the option you need to set is the Search Path. Although I admit to being hazy about how the search path works since I personally never rely on search path and always explicitly include all source files in my projects. In your example you would add ctrls\quickpdf\($Platform) to the search path.

孤千羽 2024-12-26 18:43:23

这很简单,将:

  • ..\ctrls\quickpdf\$(Platform)

添加到您的项目搜索路径中,

尽管您会惊讶地发现这确实有效,因为它在 IDE 中显示为灰色。

项目选项 - 搜索路径

That's simple, add:

  • ..\ctrls\quickpdf\$(Platform)

to your projects search path

Although you'll be surprised when you find this actually works since it shows up grayed out in the IDE.

Project Options - Search Path

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文