You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Win64 and macOS(plugin and installer) #jira UETOOL-4857 #preflight 620653f1b84973a2bb86b19c #rb JeanLuc.Corenthin #lockdown jeanmichel.dignard #ROBOMERGE-AUTHOR: kerim.borchaev #ROBOMERGE-SOURCE: CL 18952557 in //UE5/Release-5.0/... via CL 18952653 via CL 18952785 #ROBOMERGE-BOT: UE5 (Release-Engine-Test -> Main) (v917-18934589) [CL 18952791 by kerim borchaev in ue5-main branch]
17 lines
401 B
C#
17 lines
401 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
[SupportedPlatforms("Win64")]
|
|
public class DatasmithSketchUpRuby2022Target : DatasmithSketchUpRubyBaseTarget
|
|
{
|
|
public DatasmithSketchUpRuby2022Target(TargetInfo Target)
|
|
: base(Target)
|
|
{
|
|
LaunchModuleName = "DatasmithSketchUpRuby2022";
|
|
ExeBinariesSubFolder = @"SketchUpRuby/2022";
|
|
|
|
AddCopyPostBuildStep(Target);
|
|
}
|
|
}
|