Skip to content

Commit bc2ef77

Browse files
committed
Centralise object file dirs in VS so they're not all over the tree
1 parent 2ce1338 commit bc2ef77

17 files changed

+301
-307
lines changed

pdblocate/pdblocate.vcxproj

+6
Original file line numberDiff line numberDiff line change
@@ -37,25 +37,31 @@
3737
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
3838
</ImportGroup>
3939
<PropertyGroup Label="UserMacros" />
40+
<PropertyGroup>
41+
</PropertyGroup>
4042
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release64|Win32'">
4143
<LinkIncremental>false</LinkIncremental>
4244
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(IncludePath)</IncludePath>
4345
<OutDir>$(SolutionDir)x64\Release\pdblocate\</OutDir>
46+
<IntDir>$(SolutionDir)x64\Release\obj\$(ProjectName)\</IntDir>
4447
</PropertyGroup>
4548
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release32|Win32'">
4649
<LinkIncremental>false</LinkIncremental>
4750
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(IncludePath)</IncludePath>
4851
<OutDir>$(SolutionDir)Win32\Release\pdblocate\</OutDir>
52+
<IntDir>$(SolutionDir)Win32\Release\obj\$(ProjectName)\</IntDir>
4953
</PropertyGroup>
5054
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Development64|Win32'">
5155
<LinkIncremental>false</LinkIncremental>
5256
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(IncludePath)</IncludePath>
5357
<OutDir>$(SolutionDir)x64\Development\pdblocate\</OutDir>
58+
<IntDir>$(SolutionDir)x64\Development\obj\$(ProjectName)\</IntDir>
5459
</PropertyGroup>
5560
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Development32|Win32'">
5661
<LinkIncremental>false</LinkIncremental>
5762
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(IncludePath)</IncludePath>
5863
<OutDir>$(SolutionDir)Win32\Development\pdblocate\</OutDir>
64+
<IntDir>$(SolutionDir)Win32\Development\obj\$(ProjectName)\</IntDir>
5965
</PropertyGroup>
6066
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release64|Win32'">
6167
<ClCompile>

qrenderdoc/qrenderdoc_local.vcxproj

+244-260
Large diffs are not rendered by default.

renderdoc/3rdparty/breakpad/client/windows/common.vcxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,12 @@
3535
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
3636
</ImportGroup>
3737
<PropertyGroup Label="UserMacros" />
38+
<PropertyGroup>
39+
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
40+
</PropertyGroup>
3841
<PropertyGroup>
3942
<ExecutablePath>$(ExecutablePath);$(MSBuildProjectDirectory)\..\..\third_party\cygwin\bin\;$(MSBuildProjectDirectory)\..\..\third_party\python_26\</ExecutablePath>
40-
<OutDir>$(SolutionDir)renderdoc\3rdparty\breakpad\$(Platform)\$(Configuration)\</OutDir>
41-
<IntDir>$(SolutionDir)renderdoc\3rdparty\breakpad\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
43+
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
4244
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
4345
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
4446
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Development|Win32'">true</LinkIncremental>

renderdoc/3rdparty/breakpad/client/windows/crash_generation/crash_generation_client.vcxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@
3434
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
3535
</ImportGroup>
3636
<PropertyGroup Label="UserMacros" />
37+
<PropertyGroup>
38+
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
39+
</PropertyGroup>
3740
<PropertyGroup>
3841
<ExecutablePath>$(ExecutablePath);$(MSBuildProjectDirectory)\..\..\..\third_party\cygwin\bin\;$(MSBuildProjectDirectory)\..\..\..\third_party\python_26\</ExecutablePath>
39-
<OutDir>$(SolutionDir)renderdoc\3rdparty\breakpad\$(Platform)\$(Configuration)\</OutDir>
40-
<IntDir>$(SolutionDir)renderdoc\3rdparty\breakpad\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
42+
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
4143
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
4244
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
4345
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Development|Win32'">true</LinkIncremental>

renderdoc/3rdparty/breakpad/client/windows/crash_generation/crash_generation_server.vcxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@
3434
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
3535
</ImportGroup>
3636
<PropertyGroup Label="UserMacros" />
37+
<PropertyGroup>
38+
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
39+
</PropertyGroup>
3740
<PropertyGroup>
3841
<ExecutablePath>$(ExecutablePath);$(MSBuildProjectDirectory)\..\..\..\third_party\cygwin\bin\;$(MSBuildProjectDirectory)\..\..\..\third_party\python_26\</ExecutablePath>
39-
<OutDir>$(SolutionDir)renderdoc\3rdparty\breakpad\$(Platform)\$(Configuration)\</OutDir>
40-
<IntDir>$(SolutionDir)renderdoc\3rdparty\breakpad\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
42+
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
4143
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
4244
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
4345
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Development|Win32'">true</LinkIncremental>

renderdoc/3rdparty/breakpad/client/windows/handler/exception_handler.vcxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@
3434
<Import Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" />
3535
</ImportGroup>
3636
<PropertyGroup Label="UserMacros" />
37+
<PropertyGroup>
38+
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
39+
</PropertyGroup>
3740
<PropertyGroup>
3841
<ExecutablePath>$(ExecutablePath);$(MSBuildProjectDirectory)\..\..\..\third_party\cygwin\bin\;$(MSBuildProjectDirectory)\..\..\..\third_party\python_26\</ExecutablePath>
39-
<OutDir>$(SolutionDir)renderdoc\3rdparty\breakpad\$(Platform)\$(Configuration)\</OutDir>
40-
<IntDir>$(SolutionDir)renderdoc\3rdparty\breakpad\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
42+
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
4143
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
4244
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
4345
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Development|Win32'">true</LinkIncremental>

renderdoc/driver/d3d11/renderdoc_d3d11.vcxproj

+3-4
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,11 @@
6363
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6464
</ImportGroup>
6565
<PropertyGroup Label="UserMacros" />
66+
<PropertyGroup>
67+
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
68+
</PropertyGroup>
6669
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
6770
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
68-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
6971
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
7072
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
7173
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -74,7 +76,6 @@
7476
</PropertyGroup>
7577
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Development|x64'">
7678
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
77-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
7879
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
7980
<IncludePath>$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
8081
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -83,7 +84,6 @@
8384
</PropertyGroup>
8485
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
8586
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
86-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
8787
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
8888
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
8989
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -96,7 +96,6 @@
9696
<LibraryPath>$(LibraryPath)</LibraryPath>
9797
<ExcludePath>$(ExcludePath)</ExcludePath>
9898
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
99-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
10099
<TargetName>driver_$(ProjectName)</TargetName>
101100
</PropertyGroup>
102101
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Development|Win32'">

renderdoc/driver/d3d12/renderdoc_d3d12.vcxproj

+3-4
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,11 @@
6363
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6464
</ImportGroup>
6565
<PropertyGroup Label="UserMacros" />
66+
<PropertyGroup>
67+
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
68+
</PropertyGroup>
6669
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
6770
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
68-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
6971
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
7072
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
7173
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -74,7 +76,6 @@
7476
</PropertyGroup>
7577
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Development|x64'">
7678
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
77-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
7879
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
7980
<IncludePath>$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
8081
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -83,7 +84,6 @@
8384
</PropertyGroup>
8485
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
8586
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
86-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
8787
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
8888
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
8989
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -96,7 +96,6 @@
9696
<LibraryPath>$(LibraryPath)</LibraryPath>
9797
<ExcludePath>$(ExcludePath)</ExcludePath>
9898
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
99-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
10099
<TargetName>driver_$(ProjectName)</TargetName>
101100
</PropertyGroup>
102101
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Development|Win32'">

renderdoc/driver/d3d9/renderdoc_d3d9.vcxproj

+3-4
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,11 @@
6363
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6464
</ImportGroup>
6565
<PropertyGroup Label="UserMacros" />
66+
<PropertyGroup>
67+
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
68+
</PropertyGroup>
6669
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
6770
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
68-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
6971
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
7072
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
7173
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -74,7 +76,6 @@
7476
</PropertyGroup>
7577
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Development|x64'">
7678
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
77-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
7879
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
7980
<IncludePath>$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
8081
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -83,7 +84,6 @@
8384
</PropertyGroup>
8485
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
8586
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
86-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
8787
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
8888
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
8989
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -96,7 +96,6 @@
9696
<LibraryPath>$(LibraryPath)</LibraryPath>
9797
<ExcludePath>$(ExcludePath)</ExcludePath>
9898
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
99-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
10099
<TargetName>driver_$(ProjectName)</TargetName>
101100
</PropertyGroup>
102101
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Development|Win32'">

renderdoc/driver/dxgi/renderdoc_dxgi.vcxproj

+3-4
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,11 @@
6363
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6464
</ImportGroup>
6565
<PropertyGroup Label="UserMacros" />
66+
<PropertyGroup>
67+
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
68+
</PropertyGroup>
6669
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
6770
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
68-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
6971
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
7072
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
7173
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -74,7 +76,6 @@
7476
</PropertyGroup>
7577
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Development|x64'">
7678
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
77-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
7879
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
7980
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
8081
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -83,7 +84,6 @@
8384
</PropertyGroup>
8485
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
8586
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
86-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
8787
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
8888
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
8989
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -96,7 +96,6 @@
9696
<LibraryPath>$(LibraryPath)</LibraryPath>
9797
<ExcludePath>$(ExcludePath)</ExcludePath>
9898
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
99-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
10099
<TargetName>driver_$(ProjectName)</TargetName>
101100
</PropertyGroup>
102101
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Development|Win32'">

renderdoc/driver/gl/renderdoc_gl.vcxproj

+3-4
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,11 @@
135135
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
136136
</ImportGroup>
137137
<PropertyGroup Label="UserMacros" />
138+
<PropertyGroup>
139+
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
140+
</PropertyGroup>
138141
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
139142
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
140-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
141143
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
142144
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
143145
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -146,7 +148,6 @@
146148
</PropertyGroup>
147149
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Development|x64'">
148150
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
149-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
150151
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
151152
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
152153
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -155,7 +156,6 @@
155156
</PropertyGroup>
156157
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
157158
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
158-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
159159
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
160160
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
161161
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -168,7 +168,6 @@
168168
<LibraryPath>$(LibraryPath)</LibraryPath>
169169
<ExcludePath>$(ExcludePath)</ExcludePath>
170170
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
171-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
172171
<TargetName>driver_$(ProjectName)</TargetName>
173172
</PropertyGroup>
174173
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Development|Win32'">

renderdoc/driver/shaders/dxbc/renderdoc_dxbc.vcxproj

+3-4
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,11 @@
7777
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
7878
</ImportGroup>
7979
<PropertyGroup Label="UserMacros" />
80+
<PropertyGroup>
81+
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(ProjectName)\</IntDir>
82+
</PropertyGroup>
8083
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
8184
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
82-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
8385
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
8486
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
8587
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -88,7 +90,6 @@
8890
</PropertyGroup>
8991
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Development|x64'">
9092
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
91-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
9293
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
9394
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
9495
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -97,7 +98,6 @@
9798
</PropertyGroup>
9899
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
99100
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
100-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
101101
<ExecutablePath>$(ExecutablePath)</ExecutablePath>
102102
<IncludePath>$(VSInstallDir)\DIA SDK\include;$(SolutionDir)\breakpad;$(IncludePath)</IncludePath>
103103
<LibraryPath>$(LibraryPath)</LibraryPath>
@@ -110,7 +110,6 @@
110110
<LibraryPath>$(LibraryPath)</LibraryPath>
111111
<ExcludePath>$(ExcludePath)</ExcludePath>
112112
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
113-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
114113
<TargetName>$(ProjectName)</TargetName>
115114
</PropertyGroup>
116115
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Development|Win32'">

0 commit comments

Comments
 (0)