Edit: Of course, immediately after working on it for an hour then posting here, I found the stupid mistake...
I\'m getting compiler errors when tryi
I tried all of these suggestions and none worked.
Turns out the $(DXSDK_DIR) variable doesn't work if you install DirectX while Visual Studio is still running. The solution for me was to restart Visual Studio (+ adding the paths in the solutions listed above, of course).
I didn't realize that one of the other projects in the solution was #include
ing a file that was #include
ing a file that was #include
ing d3dx9.h
and I hadn't added those paths to that project.
/facepalm
you forgot one thing:
$(DXSDK_DIR)LIB\x86
Done. Hope this helps
You should make sure you have ALL paths sorounded by quotes (").
Instead of $(DXSDK_DIR)include
you should have "$(DXSDK_DIR)include"