Skip to content

Commit cec39b4

Browse files
committed
Dx12: fix msvc intermediate dir for dx12debug
1 parent 4bf2e83 commit cec39b4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

libs/directx/dx12.vcxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
<TargetExt>.hdll</TargetExt>
8585
<LibraryPath>$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);$(NETFXKitsDir)Lib\um\x64;../../x64/$(Configuration)</LibraryPath>
8686
<IncludePath>$(VC_IncludePath);$(WindowsSDK_IncludePath);../../src</IncludePath>
87-
<IntDir>$(Configuration)\dx12\</IntDir>
87+
<IntDir>$(Platform)\$(Configuration)\dx12\</IntDir>
8888
</PropertyGroup>
8989
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
9090
<LinkIncremental>false</LinkIncremental>
@@ -98,7 +98,7 @@
9898
<TargetExt>.hdll</TargetExt>
9999
<LibraryPath>$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);$(NETFXKitsDir)Lib\um\x64;../../x64/$(Configuration)</LibraryPath>
100100
<IncludePath>$(VC_IncludePath);$(WindowsSDK_IncludePath);../../src</IncludePath>
101-
<IntDir>$(Configuration)\dx12\</IntDir>
101+
<IntDir>$(Platform)\$(Configuration)\dx12\</IntDir>
102102
</PropertyGroup>
103103
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
104104
<ClCompile>

libs/directx/dx12debug.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,28 +77,28 @@
7777
<TargetExt>.hdll</TargetExt>
7878
<LibraryPath>$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86);$(NETFXKitsDir)Lib\um\x86;../../$(Configuration)</LibraryPath>
7979
<IncludePath>$(VC_IncludePath);$(WindowsSDK_IncludePath);../../src</IncludePath>
80-
<IntDir>$(Configuration)\dx12\</IntDir>
80+
<IntDir>$(Configuration)\dx12debug\</IntDir>
8181
</PropertyGroup>
8282
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
8383
<LinkIncremental>true</LinkIncremental>
8484
<TargetExt>.hdll</TargetExt>
8585
<LibraryPath>$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);$(NETFXKitsDir)Lib\um\x64;../../x64/$(Configuration);../../include/winpixeventruntime/x64</LibraryPath>
8686
<IncludePath>$(VC_IncludePath);$(WindowsSDK_IncludePath);../../src;../../include/winpixeventruntime</IncludePath>
87-
<IntDir>$(Configuration)\dx12\</IntDir>
87+
<IntDir>$(Platform)\$(Configuration)\dx12debug\</IntDir>
8888
</PropertyGroup>
8989
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
9090
<LinkIncremental>false</LinkIncremental>
9191
<TargetExt>.hdll</TargetExt>
9292
<LibraryPath>$(VC_LibraryPath_x86);$(WindowsSDK_LibraryPath_x86);$(NETFXKitsDir)Lib\um\x86;../../$(Configuration)</LibraryPath>
9393
<IncludePath>$(VC_IncludePath);$(WindowsSDK_IncludePath);../../src</IncludePath>
94-
<IntDir>$(Configuration)\dx12\</IntDir>
94+
<IntDir>$(Configuration)\dx12debug\</IntDir>
9595
</PropertyGroup>
9696
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
9797
<LinkIncremental>false</LinkIncremental>
9898
<TargetExt>.hdll</TargetExt>
9999
<LibraryPath>$(VC_LibraryPath_x64);$(WindowsSDK_LibraryPath_x64);$(NETFXKitsDir)Lib\um\x64;../../x64/$(Configuration);../../include/winpixeventruntime/x64</LibraryPath>
100100
<IncludePath>$(VC_IncludePath);$(WindowsSDK_IncludePath);../../src;../../include/winpixeventruntime</IncludePath>
101-
<IntDir>$(Configuration)\dx12\</IntDir>
101+
<IntDir>$(Platform)\$(Configuration)\dx12debug\</IntDir>
102102
</PropertyGroup>
103103
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
104104
<ClCompile>

0 commit comments

Comments
 (0)