u123
u123

Reputation: 16329

Is there a list of variables that can be used in Visual Studio 2010?

I am setting up a project in VS 2010 based on this guide:

http://www.ogre3d.org/tikiwiki/Setting+Up+An+Application+-+Visual+Studio

At some point I need to specify a path like this:

$(OGRE_HOME)\lib\$(Configuration)

I have created the variable OGRE_HOME myself, but what is $(Configuration)? Is that some existing variable defined in VS 2010?

The same goes for:

$(OutDir)
$(TargetFileName)
$(ProjectName).exe

Where can I find info on those variables, or what can be used as variables in VS 2010?

Upvotes: 1

Views: 1869

Answers (1)

Oded
Oded

Reputation: 499212

Here is a list of pre-defined environment variables on MSDN.

Upvotes: 5

Related Questions