Today, I ran into a wall with VSE10. It's my first time using VSE10 and I don't know how to include libraries. Can anybody help me with this?
Off topic here, but it needs clarifying. Many people state that DirectX 10 is not backwards compatible with Windows XP. However, Microsoft state that it is compatible with Windows XP( SP3 and/or 64-bit )( http://www.microsoft.com/downloads/en/details.aspx?displaylang=en&FamilyID=2c7da5fb-ffbb-4af6-8c66-651cbd28ca15 ( under System Requirements ) ). Any thoughts on this?
Project -> [Your Projects Name] Properties -> Configuration Properties
There add the include path of your DirectX SDK to include directories and the lib/X86 or lib/X64 (depending on what you want to build) path of the same to library directories.
Then add your directX libraries either in Linker -> Input -> Additional Dependencies of your project settings, or write #pragma comment(lib, "nameofthelib") in your code (probably in the main file I guess).
Those are translated from the german version btw, so the actual english names may be slightly different.
Thanks for your reply, Hanst. One thing though, when the program compiles, an error message appears specifying that "d3d10.dll" was not found? Any ideas?