Files
UnrealEngineUWP/Engine/Source/Programs/Enterprise/Datasmith/DatasmithSketchUpRubyExporter/DatasmithSketchUpRuby2023.Target.cs
kerim borchaev 9beda97b52 [SketchUp] Add support for SDK 2023
- 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]
2023-03-03 11:39:24 -05:00

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);
}
}