Questions tagged [nmake]

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

NMAKE is a build automation tool for Microsoft Windows, included in Microsoft development tools such as Visual Studio.

See NMAKE reference.

519 questions
0
votes
1 answer

variable already defined in a.obj

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 "b.h" lets say I declare on a variable only in "b.h",…
hudac
  • 2,584
  • 6
  • 34
  • 57
0
votes
1 answer

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 can give me many variants of build of one…
user235424
0
votes
1 answer

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 12215163), then I wanted to try it under Visual…
Kleag
  • 642
  • 7
  • 14
0
votes
1 answer

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 I would like to use in my Qt project. All static…
kiranp
  • 1
  • 1
0
votes
0 answers

Organize Content Pipeline in Visual Studio

(This is not about the XNA Content Pipeline) I'm trying to implement a content pipeline using Visual studio, that is: Project A produces file a Project B produces file b a and b are passed to an external compression tool which produces output files…
0
votes
1 answer

Import Makefile settings to VS2005 IDE

I'm a newbie in this vast world of programming. I've been given some codes in C which are compiled & linked using makefile. I can compile the code using nmake from VS2005. Now i want to build the program in C++ VS2005 IDE. From a quick google…
justin
  • 243
  • 2
  • 6
  • 15
0
votes
3 answers

Errors when compiling library in command line

I am trying to compile this library: http://www.mega-nerd.com/SRC/win32.html . but I am having some trouble. Here's what happens: C:\libsamplerate-0.1.8>make 1 file(s) copied. 1 file(s) copied. Microsoft (R) Program Maintenance Utility…
OliD
  • 37
  • 1
  • 2
  • 5
0
votes
3 answers

Statically linking multiple libraries with WinDDK

I am using the DDK to build a project. Several of the build targets generate small internal libraries -- for simplicity, let's call them LibA.lib, LibB.lib, and LibC.lib. But the code for LibA references code from LibB and LibC. To use LibA in a…
user1354557
  • 2,413
  • 19
  • 29
0
votes
1 answer

From a build done in nmake, how can I download a file from a URL (wget)?

On Windows, using nmake, how can I include a rule that downloads a file from a location? Something like wget, but on Windows.
Cheeso
  • 189,189
  • 101
  • 473
  • 713
0
votes
2 answers

Still nmake problem with Unicode-Map-0.112 after trying vcvarsall.bat

Many thanks to ephemient for recommending to try vcvarsall.bat. In DOS successfully ran vcvarsall.bat, which was part of MS C++ Express 2008 Next I continued to try to follow the PerlMonks advice by using ppm, i.e.…
JustADude
  • 2,619
  • 7
  • 31
  • 45
-1
votes
1 answer

CMake not creating Makefile, creating a lot of other files instead

I wanted to play around with my pico. I downloaded the examples from official github, installed an sdk and went along with the documentation. The problem I have is when I'm creating build files. While the cmake command is creating a lot of files,…
LauraAlice
  • 33
  • 6
-1
votes
1 answer

what is the correct way to use cmake

I was following instructions for compiling a software in windows as described here: https://github.com/solvespace/solvespace . But when i launch the first cmake command it points out the following : $ cmake ..…
-1
votes
1 answer

Getting an error building static libcurl VS2019

First I make nmake work: set PATH=%PATH%;C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Tools\MSVC\14.28.29812\bin\Hostx64\x86 then I git clone https://github.com/curl/curl.git --depth=1 Then I run buildconf.bat all seems fine. then…
-1
votes
1 answer

nmake: How to redefine a macro just for an include?

I have a makefile that is to be built by [Microsoft] nmake. It references another file as an include. I do not get to modify the included file. The problem is that one of the user-defined macros used by both isn't quite right for use by the include.…
nuit9
  • 3,181
  • 3
  • 16
  • 5
-1
votes
1 answer

How do I know which console command Qt is building the project on?

My project unlike this issue is going through MSVC and I'm having troubles with nmake. Is there a way to just see what commands Qt Creator uses when I press Ctrl+R?
gavr
  • 807
  • 7
  • 16
1 2 3
34
35