Files
UnrealEngineUWP/Engine/Source/Programs/Enterprise/Datasmith/DatasmithSketchUpRubyExporter/DatasmithSketchUpRuby2023.Build.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

32 lines
610 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.IO;
namespace UnrealBuildTool.Rules
{
[SupportedPlatforms("Win64", "Mac")]
public class DatasmithSketchUpRuby2023 : DatasmithSketchUpRubyBase
{
public DatasmithSketchUpRuby2023(ReadOnlyTargetRules Target)
: base(Target)
{
PrivateDefinitions.Add("SKP_SDK_2023");
}
public override string GetSketchUpSDKFolder()
{
return "SDK_WIN_x64_2023-0-367";
}
public override string GetSketchUpEnvVar()
{
return "SKP_SDK_2023";
}
public override string GetRubyLibName()
{
return "x64-msvcrt-ruby270.lib";
}
}
}