Files
TG_ARPG/Plugins/marketplace/LGUI/Source/LTween/LTween.Build.cs
2023-10-07 03:53:32 +08:00

44 lines
861 B
C#

// Copyright 2019-Present LexLiu. All Rights Reserved.
using UnrealBuildTool;
public class LTween : ModuleRules
{
public LTween(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
CppStandard = CppStandardVersion.Cpp20;
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
// ... add other public dependencies that you statically link with here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"CoreUObject",
"Engine",
"Slate",
"SlateCore",
// ... add private dependencies that you statically link with here ...
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
// ... add any modules that your module loads dynamically here ...
}
);
}
}