Visual Studio 201x builds: Fix GIO x64 Debug builds

The custom build rules did not have rules for x64 Debug builds during
the refactoring.  Fix this by removing all Platform and Configuration
conditions for it, since this is done on are configs in the same manner.

Noted by Ignacio Casal Quinteiro.
This commit is contained in:
Chun-wei Fan
2017-04-05 00:15:26 +08:00
parent 8c9d02acb7
commit 865ef86d8f

View File

@@ -182,12 +182,9 @@
</ItemGroup>
<ItemGroup>
<CustomBuild Include="..\..\gio\gnetworking.h.win32">
<Message Condition="'$(Configuration)'=='Debug|Win32'">Copying gnetworking.h from gnetworking.h.win32...</Message>
<Command Condition="'$(Configuration)'=='Debug|Win32'">$(GenGNetworkingH)</Command>
<Outputs Condition="'$(Configuration)'=='Debug|Win32'">..\..\gio\gnetworking.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)'=='Release'">Copying gnetworking.h from gnetworking.h.win32...</Message>
<Command Condition="'$(Configuration)'=='Release'">$(GenGNetworkingH)</Command>
<Outputs Condition="'$(Configuration)'=='Release'">..\..\gio\gnetworking.h;%(Outputs)</Outputs>
<Message>Copying gnetworking.h from gnetworking.h.win32...</Message>
<Command>$(GenGNetworkingH)</Command>
<Outputs>..\..\gio\gnetworking.h;%(Outputs)</Outputs>
</CustomBuild>
</ItemGroup>
<ItemGroup>