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]
32 lines
610 B
C#
32 lines
610 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.IO;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
|
|
[SupportedPlatforms("Win64", "Mac")]
|
|
public class DatasmithSketchUpRuby2022 : DatasmithSketchUpRubyBase
|
|
{
|
|
public DatasmithSketchUpRuby2022(ReadOnlyTargetRules Target)
|
|
: base(Target)
|
|
{
|
|
PrivateDefinitions.Add("SKP_SDK_2022");
|
|
}
|
|
|
|
public override string GetSketchUpSDKFolder()
|
|
{
|
|
return "SDK_WIN_x64_2022-0-316";
|
|
}
|
|
|
|
public override string GetSketchUpEnvVar()
|
|
{
|
|
return "SKP_SDK_2022";
|
|
}
|
|
public override string GetRubyLibName()
|
|
{
|
|
return "x64-msvcrt-ruby270.lib";
|
|
}
|
|
}
|
|
}
|