file 'ntwin32.mak' not found error while making files for live555 installation
Asked Answered
S

1

0

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.

Steel answered 6/3, 2022 at 14:4 Comment(1)
H
1

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.

Heterocercal answered 18/4, 2022 at 19:15 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.