NMAKE:致命错误 U1052:找不到文件 'Makefile.vc'

NMAKE : fatal error U1052: file 'Makefile.vc' not found

我正在尝试执行 Install pdcurses on Visual Studio 2017 中提到的步骤,它告诉我为我的 VS(2019) 启动开发人员命令提示符,然后编写 set PDCURSES_SRCDIR=D:\PDCurses-3.9\PDCurses-3.9(my path for PDCurses) 但我卡在了第 2 步:

Navigate in the command window to the directory of PDCurses/wincon*
nmake –f Makefile.vc*
(This is the make file for PDCurses.) It will create the pdcurses.lib for our Visual Studio.

然后我在命令提示符中输入的内容:

C:\Program Files (x86)\Microsoft Visual Studio19\Community>nmake -f Makefile.vc

我收到了什么:

Microsoft (R) Program Maintenance Utility Version 14.20.27508.1
Copyright (C) Microsoft Corporation.  All rights reserved.

NMAKE : fatal error U1052: file 'Makefile.vc' not found
Stop.

我真的很困惑为什么会这样。我一直在尝试搜索,但只找到了这些:

两个链接都提到了 .bat 文件。我在哪里可以找到这个文件?

感谢任何能提供帮助的人!

*:为更新目的从原始来源修改

C:\Program Files (x86)\Microsoft Visual Studio19\Community>nmake -f Makefile.vc

这是 运行ning nmake 在错误的目录中,导致 file 'Makefile.vc' not found 错误。

nmake命令必须在上一步提到的“PDCurses/wincon的目录”中运行。假设已经设置了 PDCURSES_SRCDIR,这可以在 nmake.

之前使用 cd 来完成
C:\Program Files (x86)\Microsoft Visual Studio19\Community>cd /d %PDCURSES_SRCDIR%\wincon

D:\PDCurses-3.9\PDCurses-3.9\wincon>nmake -f Makefile.vc