Files
TG_ARPG/Plugins/marketplace/UIParticle/Source/EasyParticle/EasyParticle.Build.cs

55 lines
1.1 KiB
C#
Raw Normal View History

2023-10-07 03:53:32 +08:00
// Copyright (C) 2018-2021, RedStarStudio, All Rights Reserved.
using UnrealBuildTool;
public class EasyParticle : ModuleRules
{
public EasyParticle(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicIncludePaths.AddRange(
new string[] {
// ... add public include paths required here ...
}
);
PrivateIncludePaths.AddRange(
new string[] {
// ... add other private include paths required here ...
}
);
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
// ... add other public dependencies that you statically link with here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"CoreUObject",
"Engine",
"Slate",
"SlateCore",
"UMG",
// ... add private dependencies that you statically link with here ...
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
// ... add any modules that your module loads dynamically here ...
}
);
}
}