-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # HotPatcher/Source/HotPatcherCore/Private/Cooker/MultiCooker/SingleCookerProxy.cpp # HotPatcher/Source/HotPatcherCore/Public/FlibHotPatcherCoreHelper.h # README.md # README_Chinese.md
- Loading branch information
Showing
53 changed files
with
1,253 additions
and
2,865 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
[submodule "Mods/HotMultiCooker"] | ||
path = Mods/HotMultiCooker | ||
url = [email protected]:hxhb/HotMultiCooker.git | ||
[submodule "Mods/RemakePak"] | ||
path = Mods/RemakePak | ||
url = [email protected]:hxhb/RemakePak.git | ||
[submodule "Mods/libzstd"] | ||
path = Mods/libzstd | ||
url = [email protected]:hxhb/ue-zstd.git | ||
[submodule "Mods/HotMultiCooker"] | ||
path = Mods/HotMultiCooker | ||
url = [email protected]:hxhb/HotMultiCooker.git | ||
[submodule "Mods/RemakePak"] | ||
path = Mods/RemakePak | ||
url = [email protected]:hxhb/RemakePak.git | ||
[submodule "Mods/libzstd"] | ||
path = Mods/libzstd | ||
url = [email protected]:hxhb/ue-zstd.git | ||
[submodule "Mods/HotChunker"] | ||
path = Mods/HotChunker | ||
url = [email protected]:hxhb/HotChunker.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,52 @@ | ||
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. | ||
|
||
using UnrealBuildTool; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
||
public class CmdHandler : ModuleRules | ||
{ | ||
public CmdHandler(ReadOnlyTargetRules Target) : base(Target) | ||
{ | ||
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs; | ||
bLegacyPublicIncludePaths = false; | ||
OptimizeCode = CodeOptimization.InShippingBuildsOnly; | ||
|
||
PublicIncludePaths.AddRange( | ||
new string[] { | ||
// ... add public include paths required here ... | ||
} | ||
); | ||
|
||
|
||
PrivateIncludePaths.AddRange( | ||
new string[] { | ||
// ... add other private include paths required here ... | ||
} | ||
); | ||
|
||
|
||
PublicDependencyModuleNames.AddRange( | ||
new string[] | ||
{ | ||
"UnrealEd", | ||
"Core", | ||
"Json", | ||
"SandboxFile", | ||
"JsonUtilities", | ||
"Settings", | ||
// ... add other public dependencies that you statically link with here ... | ||
} | ||
); | ||
|
||
PrivateDependencyModuleNames.AddRange( | ||
new string[] | ||
{ | ||
"InputCore", | ||
"CoreUObject", | ||
"Engine", | ||
// ... add private dependencies that you statically link with here ... | ||
} | ||
); | ||
} | ||
} | ||
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved. | ||
|
||
using UnrealBuildTool; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
||
public class CmdHandler : ModuleRules | ||
{ | ||
public CmdHandler(ReadOnlyTargetRules Target) : base(Target) | ||
{ | ||
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs; | ||
bLegacyPublicIncludePaths = false; | ||
OptimizeCode = CodeOptimization.InShippingBuildsOnly; | ||
|
||
PublicIncludePaths.AddRange( | ||
new string[] { | ||
// ... add public include paths required here ... | ||
} | ||
); | ||
|
||
|
||
PrivateIncludePaths.AddRange( | ||
new string[] { | ||
// ... add other private include paths required here ... | ||
} | ||
); | ||
|
||
|
||
PublicDependencyModuleNames.AddRange( | ||
new string[] | ||
{ | ||
"Core", | ||
"Json", | ||
"SandboxFile", | ||
"JsonUtilities", | ||
"Settings", | ||
// ... add other public dependencies that you statically link with here ... | ||
} | ||
); | ||
|
||
PrivateDependencyModuleNames.AddRange( | ||
new string[] | ||
{ | ||
"InputCore", | ||
"CoreUObject", | ||
"Engine", | ||
// ... add private dependencies that you statically link with here ... | ||
} | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.