Hi, With the current version 2.2.5, I do not see makefile.nmake. Older versions still has makefile.nmake. I'm adding something similar to: randpkt.exe : $(randpkt_OBJECTS) @echo Linking [email protected] $(LINK) @<< /OUT:randpkt.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(randpkt_LIBS) $(randpkt_OBJECTS) << !IFDEF MANIFEST_INFO_REQUIRED mt.exe -nologo -manifest "randpkt.exe.manifest" -outputresource:randpkt.exe;1 !ENDIF asked 04 Apr '17, 20:35 James Adriano |
One Answer:
Windows builds have moved to CMake and nmake isn't supported. Please read and follow the Developers Guide instructions as shown here. answered 04 Apr '17, 23:39 grahamb ♦ |
Ok, thanks for the information!