diff --git a/COMPILE.md b/COMPILE.md index 4df5a021f..f7b791345 100644 --- a/COMPILE.md +++ b/COMPILE.md @@ -11,7 +11,7 @@ Windows The main [renderdoc.sln](renderdoc.sln) is a VS2010 solution. To build on later VS versions, simply open & upgrade, I've tested building on VS2012, VS2013 and VS2015 without issues. It compiles fine in the [free VS2013 version](http://www.visualstudio.com/en-us/news/vs2013-community-vs.aspx), just select to update the compilers. -The only external dependency should be the [Windows 8.1 SDK](http://msdn.microsoft.com/en-us/windows/desktop/bg162891.aspx). The 8.0 SDK should also work fine, but [the vcxproj](renderdoc/renderdoc.vcxproj) is set up to look in `$(ProgramFiles)\Windows Kits\8.1\` for the necessary paths. If your SDK is installed elsewhere you'll also need to change these locally. You can also compile only against the June 2010 DirectX SDK if you undefine `INCLUDE_D3D_11_1` in `d3d11_common.h`, and `INCLUDE_DXGI_1_2` in `dxgi_wrapped.h`. +There should be no external dependencies, all libraries/headers needed to build are included in the git checkout. Profile configuration is recommended for day-to-day dev. It's debuggable but not too slow. Release configuration is then obviously what you should build for any builds you'll send out to people or if you want to evaluate performance. diff --git a/renderdoc/driver/d3d11/renderdoc_d3d11.vcxproj b/renderdoc/driver/d3d11/renderdoc_d3d11.vcxproj index bf6948241..a723b6098 100644 --- a/renderdoc/driver/d3d11/renderdoc_d3d11.vcxproj +++ b/renderdoc/driver/d3d11/renderdoc_d3d11.vcxproj @@ -66,20 +66,12 @@ $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) driver_$(ProjectName) - - $(SolutionDir)$(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) - $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ @@ -92,17 +84,17 @@ $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x64;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) driver_$(ProjectName) - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ driver_$(ProjectName) @@ -187,14 +179,6 @@ true - - - $(SolutionDir)renderdoc\;$(SolutionDir)renderdoc\3rdparty\ - RENDERDOC_EXPORTS;RENDERDOC_PLATFORM=win32;WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - NotUsing - - diff --git a/renderdoc/driver/dxgi/renderdoc_dxgi.vcxproj b/renderdoc/driver/dxgi/renderdoc_dxgi.vcxproj index a8af4ee93..dab754ba0 100644 --- a/renderdoc/driver/dxgi/renderdoc_dxgi.vcxproj +++ b/renderdoc/driver/dxgi/renderdoc_dxgi.vcxproj @@ -66,43 +66,35 @@ $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) driver_$(ProjectName) - - $(SolutionDir)$(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) - $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x64;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) driver_$(ProjectName) $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x64;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) driver_$(ProjectName) - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ driver_$(ProjectName) @@ -187,14 +179,6 @@ true - - - $(SolutionDir)renderdoc\;$(SolutionDir)renderdoc\3rdparty\ - RENDERDOC_EXPORTS;RENDERDOC_PLATFORM=win32;WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - NotUsing - - @@ -205,4 +189,4 @@ - \ No newline at end of file + diff --git a/renderdoc/driver/gl/renderdoc_gl.vcxproj b/renderdoc/driver/gl/renderdoc_gl.vcxproj index 085ddbf51..56c2a309c 100644 --- a/renderdoc/driver/gl/renderdoc_gl.vcxproj +++ b/renderdoc/driver/gl/renderdoc_gl.vcxproj @@ -122,43 +122,35 @@ $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) driver_$(ProjectName) - - $(SolutionDir)$(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) - $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x64;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) driver_$(ProjectName) $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x64;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) driver_$(ProjectName) - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ driver_$(ProjectName) @@ -243,15 +235,7 @@ true - - - $(SolutionDir)renderdoc\;$(SolutionDir)renderdoc\3rdparty\ - RENDERDOC_EXPORTS;RENDERDOC_PLATFORM=win32;WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - NotUsing - - - \ No newline at end of file + diff --git a/renderdoc/driver/shaders/dxbc/renderdoc_dxbc.vcxproj b/renderdoc/driver/shaders/dxbc/renderdoc_dxbc.vcxproj index ff5791823..6999d5c60 100644 --- a/renderdoc/driver/shaders/dxbc/renderdoc_dxbc.vcxproj +++ b/renderdoc/driver/shaders/dxbc/renderdoc_dxbc.vcxproj @@ -78,43 +78,35 @@ $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) $(ProjectName) - - $(SolutionDir)$(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) - $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x64;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) $(ProjectName) $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x64;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) $(ProjectName) - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ $(ProjectName) @@ -199,15 +191,7 @@ true - - - $(SolutionDir)renderdoc\;$(SolutionDir)renderdoc\3rdparty\ - RENDERDOC_EXPORTS;RENDERDOC_PLATFORM=win32;WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - NotUsing - - - \ No newline at end of file + diff --git a/renderdoc/driver/shaders/spirv/renderdoc_spirv.vcxproj b/renderdoc/driver/shaders/spirv/renderdoc_spirv.vcxproj index 1ffd3f76a..8dcc27fcc 100644 --- a/renderdoc/driver/shaders/spirv/renderdoc_spirv.vcxproj +++ b/renderdoc/driver/shaders/spirv/renderdoc_spirv.vcxproj @@ -143,43 +143,35 @@ $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) $(ProjectName) - - $(SolutionDir)$(Platform)\$(Configuration)\ - $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) - $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x64;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) $(ProjectName) $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\bin;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x64;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) $(ProjectName) - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(ExecutablePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExcludePath) $(SolutionDir)$(Platform)\$(Configuration)\ $(Platform)\$(Configuration)\ $(ProjectName) @@ -264,14 +256,6 @@ true - - - $(SolutionDir)renderdoc\;$(SolutionDir)renderdoc\3rdparty\ - RENDERDOC_EXPORTS;RENDERDOC_PLATFORM=win32;GLSLANG_OSINCLUDE_WIN32;WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - NotUsing - - diff --git a/renderdoc/driver/vulkan/renderdoc_vulkan.vcxproj b/renderdoc/driver/vulkan/renderdoc_vulkan.vcxproj index 38c0d619e..03de1d6bd 100644 --- a/renderdoc/driver/vulkan/renderdoc_vulkan.vcxproj +++ b/renderdoc/driver/vulkan/renderdoc_vulkan.vcxproj @@ -219,15 +219,7 @@ true - - - $(SolutionDir)renderdoc\;$(SolutionDir)renderdoc\3rdparty\ - RENDERDOC_EXPORTS;RENDERDOC_PLATFORM=win32;WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - NotUsing - - - \ No newline at end of file + diff --git a/renderdoc/renderdoc.vcxproj b/renderdoc/renderdoc.vcxproj index e668db525..b263fa4cc 100644 --- a/renderdoc/renderdoc.vcxproj +++ b/renderdoc/renderdoc.vcxproj @@ -68,36 +68,36 @@ false $(SolutionDir)$(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExecutablePath) + $(ExcludePath) $(Platform)\$(Configuration)\ false $(SolutionDir)$(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x64;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\bin;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExecutablePath) + $(ExcludePath) true $(SolutionDir)$(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x86;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\bin\x86;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExecutablePath) + $(ExcludePath) $(Platform)\$(Configuration)\ true $(SolutionDir)$(Platform)\$(Configuration)\ - $(ProgramFiles)\Windows Kits\8.1\Debuggers\inc;$(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) - $(ProgramFiles)\Windows Kits\8.1\lib\win8\um\x64;$(LibraryPath) - $(ProgramFiles)\Windows Kits\8.1\bin;$(ExecutablePath) - $(ProgramFiles)\Windows Kits\8.1\Include\um;$(ProgramFiles)\Windows Kits\8.1\Include\shared;$(ExcludePath) + $(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath) + $(LibraryPath) + $(ExecutablePath) + $(ExcludePath) @@ -414,4 +414,4 @@ - + \ No newline at end of file diff --git a/renderdocshim/renderdocshim.vcxproj b/renderdocshim/renderdocshim.vcxproj index 4d25ba71a..fc203df9e 100644 --- a/renderdocshim/renderdocshim.vcxproj +++ b/renderdocshim/renderdocshim.vcxproj @@ -188,11 +188,6 @@ UseLinkTimeCodeGeneration - - - kernel32.lib;user32.lib - - @@ -202,4 +197,4 @@ - \ No newline at end of file +