1

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?

Cody Gray - on strike
  • 239,200
  • 50
  • 490
  • 574
u123
  • 15,603
  • 58
  • 186
  • 303
  • 1
    possible duplicate of [Is there a list of Visual Studio environment variables?](http://stackoverflow.com/questions/1460798/is-there-a-list-of-visual-studio-environment-variables) – Oded Dec 25 '10 at 09:40

1 Answers1

5

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

Oded
  • 489,969
  • 99
  • 883
  • 1,009