Skip to content

Commit

Permalink
release v75.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hxhb committed Jan 26, 2022
1 parent c9dcfd5 commit d4c2068
Showing 1 changed file with 2 additions and 17 deletions.
19 changes: 2 additions & 17 deletions HotPatcher/Source/HotPatcherEditor/HotPatcherEditor.Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,8 @@ public HotPatcherEditor(ReadOnlyTargetRules Target) : base(Target)
bUseRTTI = true;
}

PublicIncludePaths.AddRange(
new string[] {
// ... add public include paths required here ...
}
);


PrivateIncludePaths.AddRange(
new string[] {
// ... add other private include paths required here ...
}
);

PublicIncludePaths.AddRange(new string[] { });
PrivateIncludePaths.AddRange(new string[] {});

PublicDependencyModuleNames.AddRange(
new string[]
Expand Down Expand Up @@ -85,10 +74,6 @@ public HotPatcherEditor(ReadOnlyTargetRules Target) : base(Target)
});
}

if (Target.Version.MajorVersion > 4 || Target.Version.MinorVersion > 23)
{

}
System.Func<string, bool,bool> AddPublicDefinitions = (string MacroName,bool bEnable) =>
{
PublicDefinitions.Add(string.Format("{0}={1}",MacroName, bEnable ? 1 : 0));
Expand Down

0 comments on commit d4c2068

Please sign in to comment.