Skip to content

Commit 298d63a

Browse files
committed
Fix minor error + include User/Launcher/Games folders in compile
1 parent 85d5a76 commit 298d63a

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Source/Core/DolphinQt/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,8 @@ add_executable(dolphin-emu
298298
NKitWarningDialog.h
299299
ProjectPlus/DownloadUpdateDialog.cpp
300300
ProjectPlus/DownloadUpdateDialog.h
301+
ProjectPlus/DownloadWorker.cpp
302+
ProjectPlus/DownloadWorker.h
301303
ProjectPlus/InstallUpdateDialog.cpp
302304
ProjectPlus/InstallUpdateDialog.h
303305
ProjectPlus/UpdateDialog.cpp

Source/Core/DolphinQt/DolphinQt.vcxproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,8 +499,12 @@
499499
<ImportGroup Label="ExtensionTargets" />
500500
<!--Copy Exe, Data directory and DLLs which should be located in the executable directory-->
501501
<ItemGroup>
502-
<DataSysFiles Include="$(DolphinRootDir)Data\**\Sys\**\*.*" />
502+
<DataSysFiles Include="$(DolphinRootDir)Data\**\Games\**\*.*" />
503+
<DataSysFiles Include="$(DolphinRootDir)Data\**\Launcher\**\*.*" />
504+
<DataSysFiles Include="$(DolphinRootDir)Data\**\Sys\**\*.*" />
505+
<DataUserFiles Include="$(DolphinRootDir)Data\**\User\**\*.*" />
503506
<DataTxtFiles Include="$(DolphinRootDir)Data\license.txt" />
507+
<DataTxtFiles Include="$(DolphinRootDir)Data\portable.txt" />
504508
<BinaryFiles Include="$(TargetPath)" />
505509
<AllInputFiles Include="@(DataSysFiles);@(DataTxtFiles);@(BinaryFiles)" />
506510
</ItemGroup>

0 commit comments

Comments
 (0)