Tuesday, October 11, 2011

VS2010 Project for Assignment 2

In the announcements section of WebCT I uploaded a Visual Studio 2010 project for those who need it.  There are a couple of changes I made to the Project Properties that should be useful to you in the future (if you make these changes directly, you should be able to do the conversion yourself from now on):
  • Go to C/C++ > General and paste the following into Additional Include Directories:
    $(DXSDK_DIR)Include;%(AdditionalIncludeDirectories)
  • Go to Linker > General and paste the following into Additional Library Directories:
    $(DXSDK_DIR)Lib\x86;$(DXSDK_DIR)Lib\x64;%(AdditionalLibraryDirectories)
  • Go to Linker > Input and under Additional Dependencies, remove the d3dxerr9.lib file (we don't appear to actually need it)
Before submitting your assignment, be sure to remove all warnings (I didn't do that with the sample project).

No comments:

Post a Comment