Skip to content

Commit

Permalink
updated generated tools
Browse files Browse the repository at this point in the history
  • Loading branch information
microdee committed Oct 1, 2024
1 parent f76a274 commit fe2fd48
Show file tree
Hide file tree
Showing 3 changed files with 12,711 additions and 5,675 deletions.
12 changes: 11 additions & 1 deletion build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ class Build : NukeBuild, IPublishNugets
new("5.0", UnrealCompatibility.UE_5_0),
new("5.1", UnrealCompatibility.UE_5_1),
new("5.2", UnrealCompatibility.UE_5_2),
new("5.3", UnrealCompatibility.UE_5_Latest),
new("5.3", UnrealCompatibility.UE_5_3),
new("5.4", UnrealCompatibility.UE_5_4),
new("5.5", UnrealCompatibility.UE_5_Latest),
};
new UbtGeneratorFromSource().Generate(this, engines);
new UatGenerator().Generate(this, engines);
Expand Down Expand Up @@ -169,5 +171,13 @@ static void RunTest(AbsolutePath root, string args = "")
var tests_5_3 = RootDirectory / "tests" / "UE_5.3";
RunTest(tests_5_3 / "AddCodeToProject");
RunTest(tests_5_3 / "Packaging");

var tests_5_4 = RootDirectory / "tests" / "UE_5.4";
RunTest(tests_5_4 / "AddCodeToProject");
RunTest(tests_5_4 / "Packaging");

var tests_5_5 = RootDirectory / "tests" / "UE_5.5";
RunTest(tests_5_5 / "AddCodeToProject");
RunTest(tests_5_5 / "Packaging");
});
}
Loading

0 comments on commit fe2fd48

Please sign in to comment.