From 0791a9ef80889ffb70c67fbd6491635b0014747b Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Sun, 27 Oct 2013 00:48:53 -0700 Subject: [PATCH] Add dxsdk_dir to vc++ paths via base.props. This means you no longer need the paths in a global property sheet. In fact if you have them in such a file, you should remove them as it will cause conflicts with the vs2013 build. --- Source/VSProps/Base.props | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Source/VSProps/Base.props b/Source/VSProps/Base.props index e1201912fd..a09f84f7d7 100644 --- a/Source/VSProps/Base.props +++ b/Source/VSProps/Base.props @@ -6,6 +6,16 @@ $(Platform)\$(Configuration)\ $(SolutionDir)$(Platform)\$(Configuration)\ + + $(DXSDK_DIR)Include;$(IncludePath) + $(DXSDK_DIR)Lib\x86;$(LibraryPath) + $(DXSDK_DIR)Utilities\Bin\x86;$(ExecutablePath) + + + $(DXSDK_DIR)Include;$(IncludePath) + $(DXSDK_DIR)Lib\x64;$(LibraryPath) + $(DXSDK_DIR)Utilities\Bin\x64;$(ExecutablePath) + _CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;USE_UPNP;%(PreprocessorDefinitions)