I am following the live555 installation steps from here. and have .mak makefiles in each folder. To make the Makefiles I do : nmake abc.mak
everytime to get an error fatal error U1052: file 'ntwin32.mak' not found Stop.
file 'ntwin32.mak' not found error while making files for live555 installation
https://mcmap.net/q/21465/-visual-studio-nmake-build-fails-with-fatal-error-u1052-file-39-win32-mak-39-not-found. –
Forewent
NtWin32.mak and Win32.mak ship with the Windows SDK. Install from here and then find the files in "\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Include". Copy them to all the subdirectories you wish to build.
You will need to build (ie. call namke -f *.mak" in each subdir) from a console after calling
CALL "%VS140COMNTOOLS%..\..\VC\vcvarsall.bat" x64
No you are not crazy if you are wondering why this popular library has an arcane build process on Windows rather than just using CMake.
© 2022 - 2024 — McMap. All rights reserved.