Nmake is a variant from Microsoft of Make build automation software.

learn more… | top users | synonyms

0
votes
0answers
18 views

Windows, FindResource error 1814

I have a problem embedding custom binary data into a Windows executable. The problem might also be with linking the resource or retrieving it, I don't know. Anyway the FindResource returns NULL and ...
0
votes
0answers
7 views

How to stop generating pdb file when building library using nmake

I wrote a library MyLib with CMakeLists. I used cmake to generate nmake files in Windows and use nmake to build it. The source files are hello.h and hello.c, and the destination file is hello.lib. The ...
0
votes
1answer
54 views

define macro in makefile for visual studio C++ build

I have two exe which use the same .dll through explicit linking, both do some specific work, which are differentiated through some macros. I have created a make file to build the dll, now how to ...
1
vote
1answer
61 views

CMake FindBoost for -mt-s library suffix

First things first: Windows 7 x64 using Microsoft CL.exe command line compiler with CMake, properly configured on the amd64 Visual Studio command line. I have walked through a few basic problems ...
0
votes
0answers
22 views

Add external library reference to an already existing makefile (apache)

I am under windows and I have to compile an old 1.3.9 version of apache using visualc++ from command line (nmake to be exact). Normal compilation is very straightforward, I just have to enter nmake ...
1
vote
2answers
204 views

VS2012 nmake using v110_xp toolset?

Is there a way to use v110_xp toolset (instead of default "v110") when compiling with "nmake" ? I'm trying to compile a Qt5 library for VisualStudio2012 and I need it to work on Windows XP machines ...
0
votes
0answers
43 views

warning LNK4217: Can it cause an application crash at runtime?

args.obj : warning LNK4217: locally defined symbol lzma_check_is_supported imported in function "void __cdecl parse_real(struct args_info *,int,char * *)" (?parse_real@@YAXPAUargs_info@@HPAPAD@Z) ...
0
votes
1answer
36 views

GNU make and nmake: computed names with multiple values

GNU make manual describes usage of computed names as follows: VAR1 := 5 VARX := VAR1 $(info $((VARX))) Output: 5 How to use computed name with multiple values inside? VAR1 := 5 VAR2 := 7 VARY := ...
1
vote
0answers
66 views

error in compile,build and debug c program in slickedit

I have an error in compiling a C program into the slickedit. When I compile my project,in the build dock,show me this: //......build window.........// echo VSLICKERRORPATH="C:\Temp" ...
0
votes
0answers
52 views

Qualnet compilation with VC++ 2008 Express: fatal error 1052 : nmake

I am working on Qualnet 5.2 and try to compile qualnet with VC++. But I am getting an error that addons Makefile is not found. I followed the instruction given by them in programmers guide. Also ...
0
votes
0answers
49 views

Nmake: execute command for multiple test files

I have the following lines in my makefile.vc file (VS STUDIO 2010): $(DEBUGGER) $(TESTEXECUTE) $(ROOT)/tests/test1.test $(DEBUGGER) $(TESTEXECUTE) $(ROOT)/tests/test2.test $(DEBUGGER) $(TESTEXECUTE) ...
0
votes
1answer
87 views

addprefix command not recognized in makefile using nmake.exe windows

all: prd.exe CC=cl CFLAGS=-O2 -I../src -I. /W4 LDFLAGS = /Zi LIBSRC = $(addprefix ../lib/, \ open.c malloc.c \ ) \ $(addprefix ../src/, \ main.c \ ) \ helper.c ...
5
votes
1answer
164 views

QMake SUBDIRS project: How to call release-clean from top-level Makefile?

I am using a Qt .pro file using the SUBDIRS template (mainly following this answer). Furthermore I am building my solution using qmake -recursive MyProject.pro and nmake Release. Now I want to ...
0
votes
1answer
89 views

Simple NMAKE file fails (1 echo command)

I can't, for the life of me, figure out what I've done to my build environment. Even now, the simplest of make files fails me: win32.mak: ALL: echo test command: nmake -f win32.mak output: ...
0
votes
1answer
53 views

Rename the 'makefile' build.exe expects to something that won't clash?

In the DDK/WDK the build.exe expects certain files in a folder. As soon as you give a sources file, you are also expected to have a makefile in the same folder. Obviously this name clashes with all ...
2
votes
1answer
420 views

Visual Studio 2012 Platform Toolset set Incorrectly

I have a C++ project that I created in VS 2010 and I'm now running it in 2012, but I still want to use the 2010 compiler. All my other projects in the same solution are fine but for some reason this ...
2
votes
1answer
162 views

How can I run vcvars32.bat before code build in eclipse?

I want to compile my c++ codes with cl compiler. Therefore I started a "c++ makefile project" in eclipse. Then I wrote my make file. I must run vcvars32.bat firstly to run cl so I write that command ...
0
votes
0answers
126 views

LINK : fatal error LNK1105: cannot close file '????.\..\..\lib\QtWebKitd4.dll', QT build

I'm trying to build Qt libraries configured for MS Visual studio 2005, I get this certain error when I run nmake. My conditions: Win XP 32, MS VS 2005, MS .NET Framework SDK 2.0 QT 4.6.1. Any ideas? ...
0
votes
0answers
106 views

Setting pre build event for nmake through command line in Qt

I am using Qt creator configured with tool chain Microsoft Windows SDK for Windows 7 for building project. I am using third party libraries of ITK 4.3.0 which I manually added to .pro file of Qt ...
2
votes
3answers
2k views

Qt 5 with MSVC and NMake doesn't work

When I compile a fresh Qt project with the new Qt Creator 2.6.1 and Qt 5.0 I get the following errors: C:\Qt\Qt5.0.0\Tools\QtCreator\bin\jom.exe -f Makefile.Debug Error: cannot open ...
1
vote
0answers
93 views

configure qmake for install headers to different subfolders

I have project where header files are in different subfolders (/config/.h; /thread/.h etc) in qt project file they are included like: HEADERS += $$PWD/src/*.h HEADERS += $$PWD/src/config/*.h then ...
0
votes
1answer
249 views

How do I set up a Visual Studio 2010 project for building a 64 bit extension dll for Slickedit 17?

I am migrating to Windows 7, moving into Slickedit 17 64 bit and have an old Slickedit extension DLL that is 32 bit that I need to recreate as 64 bit. This DLL is basically a bunch of wrappers for ...
0
votes
0answers
98 views

Getting the parent directory inside Makefile.msc

I have third-party Makefile.msc (zlib) which is in a subdirectory of the source (zlib\win32). It seems you are meant to run win32/Makefile.msc directly from the source directory. However, I need to ...
0
votes
1answer
72 views

variable already defined in a.obj [duplicate]

Possible Duplicate: Is it possible to #Include in a “diamond heritage” stracture? I'm building some program who looks like that: "a.c" #includes "a.h" and #includes "b.h" "b.c" #includes ...
0
votes
0answers
93 views

Error Installing Rails Gem - fatal error C1083: Cannot open include file: 'stdlib.h': No such file or directory NMAKE : fatal error U1077

I am getting this error when I install Rails gem or update.. Pls guide.. (vctoolkit 2003 was installed to rectify a earlier error of cl not found) Q:\Rails\Rails>gem install rails Temporarily ...
0
votes
0answers
184 views

Compiling Qt for g++ on Windows

So this is my latest attempt to solve the problem described here and here (collective bounties on these questions worth 250 btw). Namely, I'm trying to compile Qt with the configure command ...
0
votes
3answers
2k views

Qt 4.8.3 Windows 7 Compile Using Visual Studio Express 2012

I'm still new to Qt. In the past I used to download Qt on a computer and install it without any problems and I get immediate access to all Qt SDK resources including QtCreator. Now, I downloaded Qt ...
2
votes
3answers
487 views

Microsoft Visual Studio 2010 doesn't put build tools in PATH for clean target?

I've configured Microsoft Visual Studio to use a Makefile configuration type, and I've written a makefile to build my project using the Microsoft tools. Under the NMake section of the project ...
1
vote
0answers
129 views

NMake Pattern Rules

Hi I decided to try and learn how to build programs via the command line and makefiles instead of relying on Visual Studio to do it for me. After familiarizing myself with the process of compiling ...
0
votes
0answers
51 views

Compile libpng for Windows Mobile 6.1

I would like to use libpng in my windows mobile application. For that, the reasonable course of action seems to be compiling it into a library and then calling it from my c# application. However, i do ...
0
votes
2answers
174 views

Run nmake from emacs on Windows 7

I know there have been a few posts on the topic but didn't get a satisfying answer: I develop C++ code and use CMake as a build system. I usually work in a Linux environment. Now I want to port my ...
0
votes
2answers
2k views

Where can I get a standalone nmake.exe?

nmake.exe, a Microsoft Windows port of make, used to be available for download at the Microsoft knowledge base servers. They've since taken the article down, and I don't know where I can reliably get ...
0
votes
0answers
139 views

“Failed to configure [library]” while compiling Ruby on Visual Studio 2010 Express

I've just installed Visual Studio C++ 2010 Express, WDK, Win SDK, DirectX SDK. I ran my vcvarsall.bat file to set environment variables. Then I went to my Ruby source folder and ran the ...
0
votes
1answer
39 views

How can I build many variants of one project using makefile?

I work on a project which is often built and run on several operating systems and in multiple configurations. I use two compilers: icc and gcc, and multiple sets of arguments for those compilers. That ...
0
votes
1answer
349 views

Qt SDK 1.2.1 — cannot find nmake

EDIT: It seems I can use the nmake from \Microsoft Visual Studio 10.0\VC\bin\nmake.exe, but it would be nice (and much more user-friendly) if the "Qt 4.8.1 for Desktop" took care of this ...
0
votes
0answers
279 views

Compile with cmake nmake generator but does not compile with cmake visual studio generator. template instantiation link error

I work on porting to Windows a Linux C++ project. The buildsystem is cmake (2.8). I successfully built it using the nmake generator (Visual C++ 10) but its debug version does not start (see question ...
0
votes
0answers
124 views

Using NMAKE batch-mode with tree of directories

I'd like to utilise NMAKE batch-mode feature and use /MP (Build with Multiple Processes) option to speed up a library building Source files of a library are scattered across directories. There is a ...
0
votes
1answer
101 views

Microsoft nmake: $? expands but $< does not

I'm trying to compile some third-party code and have hit some strange NMAKE behavior. The line in the Makefile is cholmod_aat.o: ../Core/cholmod_aat.c $(C) -c $(I) $< -Fo$@ which ...
0
votes
1answer
368 views

fatal error U1073: don't know how to make 'distclean' Stop

Before configuring again qt with visual studio, I tried to cleanup previous build. I wrote cd C:\Qt\4.8.2 C:\Qt\4.8.2>nmake distclean using Visual Studio Command Prompt(2010). Then I faced with this ...
0
votes
0answers
86 views

nmake how to compile only modified files

I am working on nmake maefiles. Below mentioned is a sample makefile. In this approach, i am able to compile and build objs and dlls. But My Problem in this approach is everytime i compile, it gets ...
0
votes
1answer
141 views

Can`t open compiled project

I have compiled project with qmake (qmake -project; qmake; nmake). When I opened file .pro, to reload project I got the following error: The item "debug\moc_Rls.cpp" already exists under the ...
0
votes
0answers
378 views

Qt nmake compilation using custom Makefile

Build Environments - Qt4.8.0, msvc-2008, nmake, Windows 7 x64. I have small Qt code. I am building it using my custom Makefile for nmake. Makefile is as below, File : Makefile ...
0
votes
1answer
138 views

Qt nmake build with DEFINES variable

I need help in building my Qt project with "nmake". I am using Qt4.8, Windows 7 64Bit, VS2008 Command Prompt compiler, with "nmake". Requirement is, I have multiple pre-compiled static libs, which ...
0
votes
0answers
131 views

Mapserver nmake compile issues

I am trying to compile mapserver and am having some issues with the process. The last error I get is not reported on screen. As per Problem with nmake I am running this in the VS 2010 command prompt ...
1
vote
0answers
234 views

nmake - illegal character '{' in macro

Hello everyone! I'm trying to compile some external libraries as a prerequisite for compiling source of MESHLAB (a tool for 3d mesh processing). First I use the "qmake" command to generate the ...
1
vote
0answers
68 views

Order-only targets as in GNU Make - for Microsoft NMAKE?

GNU Make allows to specify order-only targets: Occasionally [...] you have a situation where you want to impose a specific ordering on the rules to be invoked without forcing the target to be ...
2
votes
1answer
727 views

How to Compile a Ruby C Extension and link libcurl on Windows

I am trying to build a Ruby C Extensions that uses libcurl. So far I have built it sucessfully on Os X. However I am much less experienced developing in Windows and am not exactly sure how to go about ...
1
vote
1answer
387 views

nmake fails to compile TSF samples with VS 2012

I'm trying to build Text Services Framework Sample Codes using Visual Studio 2012 on Windows 8 RC 64bit. The instructions on these samples were based on VS 2003. Here's the part of that (wrote my ...
2
votes
2answers
399 views

Building Qt for VS2010 with nmake returns link error

I'm trying to build Qt for visual studio 2010 and I'm following the instruction in the accepted answer of this post I'm using the modified configure command: configure.exe -release -no-webkit ...
0
votes
0answers
63 views

nmake install rule

I have a nmake file to install some header files for example HEADERS = foo.h bar.h INSTALL_PATH foo\ How i create a new variable INSTALL_HEADERS = foo\foo.h foo\bar.h I try to use substitution ...

1 2 3 4