Files
UnrealEngineUWP/Engine/Source/ThirdParty/Android/detex/detex.Build.cs
joe kirchoff e4b870ac3b Update external modules to add include paths to PublicSystemIncludePaths rather than PublicIncludePaths
#rnx
#rb trivial

[CL 22876134 by joe kirchoff in ue5-main branch]
2022-10-31 20:55:55 -04:00

20 lines
424 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class detex : ModuleRules
{
public detex(ReadOnlyTargetRules Target) : base(Target)
{
string detexpath = Target.UEThirdPartySourceDirectory + "Android/detex/";
PublicSystemIncludePaths.Add(detexpath);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"ApplicationCore",
}
);
}
}