如何使用 NMake 指定包含目录?

发布于 2024-09-11 14:52:52 字数 407 浏览 6 评论 0原文

我正在尝试使用 nmake 构建 libfcg (http://www.fastcgi.com/),但是我收到以下错误:

..\include\fcgios.h(23) : fatal error C1083: Cannot open include file: 'windows.h': No such file or directory

我安装了 Widows SDK 并且 Windows.h 文件存在于该目录中:

C:\Program Files\Microsoft SDKs\Windows\v7.0A\Include

如何将其指定为包含目录?

I'm trying to use nmake to build the libfcg (http://www.fastcgi.com/), however I'm getting the following error:

..\include\fcgios.h(23) : fatal error C1083: Cannot open include file: 'windows.h': No such file or directory

I have the Widows SDK installed and the Windows.h file is present in this directory:

C:\Program Files\Microsoft SDKs\Windows\v7.0A\Include

How can I specify this as an include directory?

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

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

发布评论

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

评论(3

影子是时光的心 2024-09-18 14:52:52

执行此操作的正确方法是使用 INCLUDE 环境变量,例如:

INCLUDE=C:\Windows Kits\10\Include\10.0.19041.0\um;C:\Windows Kits\10\Include\10.0.19041.0\ucrt

https://learn.microsoft.com/cpp/build/reference/i-additional-include-directories

The correct way to do this, is with the INCLUDE environment variable, example:

INCLUDE=C:\Windows Kits\10\Include\10.0.19041.0\um;C:\Windows Kits\10\Include\10.0.19041.0\ucrt

https://learn.microsoft.com/cpp/build/reference/i-additional-include-directories

拍不死你 2024-09-18 14:52:52

将 -I"include dir" 作为命令行选项传递给 cl。

Pass -I"include dir" as command line option to cl.

喜你已久 2024-09-18 14:52:52

使用nmake时,您可以使用环境变量CL指定cl.exe包含目录

set CL=/IC:\Program Files\Microsoft SDKs\Windows\v7.0A\Include

While using nmake you can specify the cl.exe include dir with an environment variable CL

set CL=/IC:\Program Files\Microsoft SDKs\Windows\v7.0A\Include
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文