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:
parent
637fbec35d
commit
9988652d86
|
@ -251,8 +251,6 @@
|
|||
</ItemGroup>
|
||||
<!--Put standard C/C++ headers here-->
|
||||
<ItemGroup>
|
||||
<ClInclude Include="Config\CheatWarningWidget.h" />
|
||||
<ClInclude Include="Config\GeckoCodeWidget.h" />
|
||||
<ClInclude Include="Config\Mapping\GCKeyboardEmu.h" />
|
||||
<ClInclude Include="Config\Mapping\GCPadEmu.h" />
|
||||
<ClInclude Include="Config\Mapping\GCPadWiiU.h" />
|
||||
|
|
Loading…
Reference in New Issue