Fix launching DolphinQt2 from Visual Studio

Starting with 5.0-5504, trying to launch DolphinQt2 from Visual Studio
shows the error message "The operation could not be completed. Undefined
error" instead of launching the exe file. (The exe gets created
correctly, it just doesn't get launched. It's possible to work around
the problem by launching the exe manually outside of Visual Studio, but
then you won't have an attached debugger automatically.) This commit
fixes that by removing headers from DolphinQt2.vcxproj's ClInclude list
that already are in the QtMoc list. (The problem was originally about
LogWidget.h and LogConfigWidget.h, but 5.0-5600 made the problem be
about CheatWarningWidget.h and GeckoCodeWidget.h instead.)
This commit is contained in:
JosJuice 2018-01-04 13:03:47 +01:00
parent 637fbec35d
commit 9988652d86
1 changed files with 0 additions and 2 deletions

View File

@ -251,8 +251,6 @@
</ItemGroup> </ItemGroup>
<!--Put standard C/C++ headers here--> <!--Put standard C/C++ headers here-->
<ItemGroup> <ItemGroup>
<ClInclude Include="Config\CheatWarningWidget.h" />
<ClInclude Include="Config\GeckoCodeWidget.h" />
<ClInclude Include="Config\Mapping\GCKeyboardEmu.h" /> <ClInclude Include="Config\Mapping\GCKeyboardEmu.h" />
<ClInclude Include="Config\Mapping\GCPadEmu.h" /> <ClInclude Include="Config\Mapping\GCPadEmu.h" />
<ClInclude Include="Config\Mapping\GCPadWiiU.h" /> <ClInclude Include="Config\Mapping\GCPadWiiU.h" />