vote up 4 vote down star
2

I'm scripting the checkout, build, distribute, test, and commit cycle for a large C++ solution that is using Monotone, Cmake, Visual Studio Express 2008, and custom tests.

All of the other parts seem pretty straight-forward, but I don't see how to compile the visual studio solution without getting the GUI.

The script is written in Python, but an answer that would allow me to just make a call to: os.system would do.

flag

4 Answers

vote up 5 vote down check

I know of two ways to do it.

Method 1
The first method (which I prefer) is to use msbuild:

msbuild project.sln /Flags...

Method 2
You can also run:

vcexpress /build project.sln /Flags...

The vcexpress option returns immediately and does not print any output. I suppose that might be what you want for a script.

Note that DevEnv is not distributed with Visual Studio Express 2008 (I spent a lot of time trying to figure that out when I first had a similar issue).

So, the end result might be:

os.system("msbuild project.sln /p:Configuration=Debug")

You'll also want to make sure your environment variables are correct, as msbuild and vcexpress are not by default on the system path. Either start the Visual Studio build environment and run your script from there, or modify the paths in Python (with os.putenv).

link|flag
vote up 0 vote down

msbuild is your friend.

msbuild "C:\path to solution\project.sln"

-Adam

link|flag
I've seen that fail in odd situations due to differences in how MSBuild and DevEnv process .sln files. – Jeffrey Hantin Jan 31 at 2:57
vote up 0 vote down

Check out MSBuild

link|flag
vote up 0 vote down

MSBuild usually works, but I've run into difficulties before. You may have better luck with

devenv /Build YourSolution.sln
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.