You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-206488 #rb Brandon.Schaefer, Josh.Adams [CL 31378452 by florin pascu in ue5-main branch]
20 lines
386 B
C#
20 lines
386 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class LinuxTargetPlatform : ModuleRules
|
|
{
|
|
public LinuxTargetPlatform(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
BinariesSubFolder = "Linux";
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"TargetPlatform",
|
|
"DesktopPlatform",
|
|
}
|
|
);
|
|
}
|
|
}
|