Some questions and comments about installing the Platform SDK

Hi Everybody,

I'm new to VC++ and programming in general. I'm trying to teach myself how to do this at home with a few books and whatever learning resources I can find online, along with the VC++ Express edition IDE. I have a couple of questions and comments about installing the Platform SDK.

The video I watched on Microsoft's site that I found describing how to install the SDK says: in Tools> Options> Projects and Solutions>VC directories that I should add the path $(Program Files)\Microsoft SDK\Bin and likewise for lib and include

For starters, it installs in the "Microsoft Platform SDK" folder in Program Files and not "Microsoft SDK" and I made the appropriate changes to reflect this, but at first I followed the directions given by the video exactly since I'm new to this and didn't want to foul things up.

If I click the add new file icon on the Options dialog I can drill down through the directories and find the folders that came from the Platform SDK install, however, the resulting path does not use the "$(...)" notation, rather it produces a "C:\" path.

Is this acceptable?

I know this may be a stupid question but I also that these things can be very touchy and I want make sure I give the IDE exactly what it needs to do it's job.

[1280 byte] By [CnoEvil] at [2008-2-28]
# 1
CnoEvil, you can safely forget about ${...} thing. Just enter full valid paths to PSDK directories (bin, include and lib). Next, generate sample Win32 application and compile it to check if your confoguration is correct.
vuki at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual C++ 2005 Express Edition...
# 2
thanks vuki.

What is the $(...) thing all about anyway? I've checked around online looking for information on this type of path notation but can't find any.

CnoEvil at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual C++ 2005 Express Edition...