Files
UnrealEngineUWP/Engine/Source/Programs/Enterprise/Datasmith/DatasmithSketchUpRubyExporter/DatasmithSketchUpRuby2019.Build.cs
Marc Audy 01b7c9f4f5 Merge UE5/RES @ 15958325 to UE5/Main
This represents UE4/Main @ 15913390 and Dev-PerfTest @ 15913304

[CL 15958515 by Marc Audy in ue5-main branch]
2021-04-08 14:32:07 -04:00

32 lines
610 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.IO;
namespace UnrealBuildTool.Rules
{
[SupportedPlatforms("Win64", "Mac")]
public class DatasmithSketchUpRuby2019 : DatasmithSketchUpRubyBase
{
public DatasmithSketchUpRuby2019(ReadOnlyTargetRules Target)
: base(Target)
{
PrivateDefinitions.Add("SKP_SDK_2019");
}
public override string GetSketchUpSDKFolder()
{
return "SDK_WIN_x64_2019-3-253";
}
public override string GetSketchUpEnvVar()
{
return "SKP_SDK_2019";
}
public override string GetRubyLibName()
{
return "x64-msvcrt-ruby250.lib";
}
}
}