Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
2k views

How do I write a build batch script that runs vcvars32.bat, and then continues with the build?

I want to write a simple batch script that loads the Visual Studio build environment using vcvars32.bat and then continue with the build, using vcbuild. However, my script won't execute past the ...
4
votes
3answers
386 views

Make it tell me what is out of date in Visual C++ 2005 project

I have a 100+ source file VC++ project in Visual Studio 2005. A lot of those files have custom build steps. There is something that is not updated when I build. Every time I hit the start debug ...
3
votes
3answers
966 views

Optional environment variables with vcproj/vsprops

Is there any way to make an environment variable substituion in a project file (with or without vsprops) that, if the variable is not found, is substituted instead with a default value? I haven't ...
2
votes
1answer
96 views

Using more than 4 cores with VCBuild

I'm attempting to utilize all 12 cores of our build server, but am unable to specify /M12 and get all 12 cores working on the build. It appears as though /M4 is the limit. Is this true? Is there ...
1
vote
2answers
488 views

Adding Preprocessor directive dynamically from commandline build VS2008

I am using VS2008, and developing C/C++ projects. I am using .bat file to build my projects from commandline (VC2k8 command prompt). I need a way to include preprossor directive dynamically at build ...
1
vote
4answers
1k views

buildbot C++ build on Windows: use devenv.com, vcbuild.exe, or MSBuild.exe?

My buildbot has been running for 3 years using devenv.com to compile the projects on Windows. Now devenv.com has troubles to build for 64 bits versions: passing the configuration as "Debug|x64" ...
0
votes
1answer
131 views

Where is vcbuild in VS2010?

I've upgraded to VS2010 and am looking for the vbuild executable. For VS2008, it was under: C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcpackages\vcbuild.exe Where is it for VS2010? ...
0
votes
1answer
91 views

Error building from the Windows Command Prompt via vcbuild

I am trying to execute vcbuild via the command prompt. Just using vcbuild project.vcproj doesn't work and I've tried using the whole path : C:\Program Files (x86)\Microsoft Visual Studio ...
0
votes
1answer
195 views

What does this error message mean: LINK : fatal error LNK1104: cannot open file 'TEMPFILE'

I'm building a C program with Visual Studio 2008, from the command line. vcbuild /logcommands foo.vcproj From the GUI, the build works fine. But from the command line, the build fails at the link ...
0
votes
0answers
222 views

MSBuild verbosity vs. VCBuild verbosity

I'm trying to compile a Visual Studio solution from the command line. One thing I've noticed is that if I leave the /verbosity switch off, or set it to anything less than detailed, I see virtually no ...
0
votes
0answers
282 views

x64 msbuild fails to include stl

On our build system when we build 64 bit builds, the build is failing to find the stl libraries when they are included without the .h. So if I do #include <string>it fails, but if I do ...
0
votes
1answer
160 views

VCBuild: Unable to load Property sheet

VCBuild is failing to load a property sheet. How can I specify $(SolutionDir)? >vcbuild /logfile:log.txt /rebuild "./Project1/Project1.vcproj" The following error has occurred during XML parsing: ...
0
votes
2answers
731 views

VCBuild task in MSBuild - change outputpath

I'm attempting to write an automated build for one of our products, and I've hit up against a wall for some of our VC++ projects: I need to be able to set the output path to where the assemblies will ...
0
votes
1answer
285 views

VCBuild link errors from command line

I am using external libraries from my VC Express project. I am trying to automate my build through the command line, but it seems VCBuild does not recognize the additional directories I saved/added ...
0
votes
2answers
1k views

set vcbuild environment through msbuild

I have an msbuild project file that is used for building several C++ projects (*.vcproj). Here's a part of a typical project file, in which global environment variables for the build are overridden as ...
0
votes
0answers
276 views

Is there a way to stop vcbuild's after the first failure?

I am running a vcbuild process as part of a buildbot. I would like the build to stop on the first failure, instead of continuing to build additional projects. It looks like msbuild has a ...
0
votes
1answer
805 views

project does not contain a configuration called 'Debug|x64'

I'm trying to build a C++ project with a build configuration platform of x64. It's on a new machine running a 64 bit Windows Server 2008. When I open the build configuration manager in VS, I can't ...