(WIP) Adding more commandline params for the native conversion tool (in setup for calling from the cook commandlet).

[CL 2685571 by Mike Beach in Main branch]
This commit is contained in:
Mike Beach
2015-09-09 18:51:40 -04:00
committed by Mike.Beach@epicgames.com
parent a672dacb4a
commit 6067386904
7 changed files with 320 additions and 39 deletions

View File

@@ -41,9 +41,13 @@ int32 UGenerateBlueprintCodeModuleCommandlet::Main(FString const& Params)
return 0;
}
FBlueprintNativeCodeGenUtils::FScopedFeedbackContext ScopedErrorTracker;
FBlueprintNativeCodeGenCoordinator Coordinator(CommandlineParams);
FBlueprintNativeCodeGenUtils::GenerateCodeModule(Coordinator);
return 0;
if (!ScopedErrorTracker.HasErrors())
{
FBlueprintNativeCodeGenUtils::GenerateCodeModule(Coordinator);
}
return ScopedErrorTracker.HasErrors();
}