You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- compiles with SDK 2023 - Windows installer includes 2023 - Mac OS compiles and zips #jira UE-178267 #preflight 63fc9331dd78dd50f67286e5 #rb JeanLuc.Corenthin [CL 24500172 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 DatasmithSketchUpRuby2023Target : DatasmithSketchUpRubyBaseTarget
|
|
{
|
|
public DatasmithSketchUpRuby2023Target(TargetInfo Target)
|
|
: base(Target)
|
|
{
|
|
LaunchModuleName = "DatasmithSketchUpRuby2023";
|
|
ExeBinariesSubFolder = @"SketchUpRuby/2023";
|
|
|
|
AddCopyPostBuildStep(Target);
|
|
}
|
|
}
|