0
votes
1answer
98 views
makedepend equivalent for use with nmake?
Just wondering if there is a 'makedepends' equivalent that ships with visual studio that I can use with nmake. Does anyone know?
0
votes
5answers
361 views
qt moc.exe not generating *.moc file
Hi,
I'm trying to build the qtestlib/tutorial1 example, but the testqstring.moc file isn't being generated when I run nmake (I'm running QT 4.5.2 on Windows XP SP3). I copied testqstring.cpp from the …
1
vote
2answers
446 views
Handling nmake errorlevel/return codes
Hi all,
I have an nmake-based project which in turn calls the asp compiler, which can throw an error, which nmake seems to recognize:
NMAKE : fatal error U1077: …
1
vote
2answers
34 views
printing long compilation lines with MS NMAKE
I have a legacy MS NMAKE Makefile I need to fix a few bugs in.
There are some very long command lines I wish to debug that are being executed using the following NMAKE trick
dep:
cmd …
1
vote
2answers
242 views
How do I set the executable attributes with qmake for a c++ project?
I use buildbot to compile my Qt/C++/nmake project.
I would like to add the version number to the executable and the company details (on the properties of the file).
Does anybody know where I can …
0
votes
1answer
146 views
Generate header dependencies for use with nmake
gcc provides the -MD option to output any dependent header files a source file may require. There are also utilities such as 'makedepend' available to Unix which can accomplish the same thing.
Is …
0
votes
1answer
220 views
Import Makefile settings to VS2005 IDE
Hi,
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 …
7
votes
5answers
1k views
How do I utilise all the cores for nmake?
I just got a new quad core computer and noticed that nmake is only using 1 process.
I used to use make which had the switch -j4 for launching 4 processes. What is the nmake equivalent?
[edit]
Based …
0
votes
2answers
102 views
Recursive nmake target
When recursively invoking nmake, via the $(MAKE) macro, how can I pass on the target specified on the command line to the new instance?
So, say I execute the following from the command line:
…
1
vote
2answers
134 views
Converting nmake to make
Is there a tool in the market that takes Visual Studio "nmake" files, and converts them to Unix-style "make" files? Is there any tool that eases the pain of managing makefiles in large projects?
0
votes
6answers
485 views
What am I missing from my environment variables for my linker to fail with LNK1181?
I have a Qt project which I have had a debug console displayed whilst I am developing, I am about to ship the product to I removed the qmake console command:
CONFIG += console
However when I do that …
0
votes
2answers
108 views
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 …
1
vote
4answers
381 views
Use NMAKE to make all source in a directory?
Using nmake, is it possible to have the makefile build all the .cpp files in the current directory automatically, without having to specify them individually?
So, instead of something like:
O = …
2
votes
0answers
369 views
nmake Makefile to Place object files in a separate directory
Hi,
I have all my source files in the Source folder, The makefile is in the Makefile folder and I want all object files to be placed in Objects folder. It is a C project iam working on. All these …
1
vote
3answers
101 views
YACC compile error
I am compiling a YACC file using Cygwin shell on a PC. I am getting an 'unknown character \15'. The weird thing is that a co-worker on another machine can compile the exact same file using the same …
