| Support Forum Library Source SourceForge Page G3D Web Page |
The following sections give step-by-step instructions for installing the 9.00 version of G3D on Windows XP, Vista, and 7.
For experienced Visual Studio developers, the short version of these instructions is simple:
G3D9\demos\starter for a simple application framework.

Download G3D-9.00-b03-win.zip
and unzip it into a directory like c:\libraries. This
will create the directories c:\libraries\G3D9,
c:\libraries\G3D9\manual, etc.
Run Visual Studio 2010


Microsoft.Cpp.Win32.user.props in Visual Studio. The default location in Windows XP is
C:\Documents and Settings\%USERNAME%\Local Settings\Application Data\Microsoft\MSBuild\v4.0\Microsoft.Cpp.Win32.user.propsThe default location in Windows Vista is:
C:\Users\%USERNAME%\AppData\Local\Microsoft\MSBuild\v4.0where
%USERNAME% is your Windows login name.
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<IncludePath>$(IncludePath);C:\libraries\G3D9\include</IncludePath>
<LibraryPath>$(LibraryPath);C:\libraries\G3D9\lib</LibraryPath>
</PropertyGroup>
</Project>
Microsoft.Cpp.Win32.user.props.
Repeat the previous step for Microsoft.Cpp.x64.user.props, also adding the following include and library paths:
C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Include
C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Lib
Click on the Tools menu and then select Options, as demonstrated in this image:

In the tree list on the left of the entire dialog, select TextEditor/Extensions. Add each of the following extensions with the "Microsoft C++ Experience" by typing it into the text box and pressing "Add": "pix", "vrt", "geo", "cu", "any". The completed dialog should look like:

Push Ok to close the Options dialog.
Quit Visual Studio to ensure that your changes are saved.
Set the G3D9DATA environment variable to the directory containing the G3D data files (e.g., c:\libraries\G3D9\data). Add the G3D9\bin directory to your PATH environment variable. For instructions on setting environment variables for different versions of Windows, see:
1.8.2