тьма всякого барахла

This commit is contained in:
Andron666
2022-04-28 14:15:01 +05:00
parent d9824dca71
commit 471d187aec
751 changed files with 28441 additions and 6 deletions
@@ -0,0 +1,53 @@
// Some copyright should be here...
using UnrealBuildTool;
public class manageTextFile : ModuleRules
{
public manageTextFile(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",
// ... add private dependencies that you statically link with here ...
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
// ... add any modules that your module loads dynamically here ...
}
);
}
}