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]
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 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";
|
|
}
|
|
}
|
|
}
|