CelticCraft/Plugins/VoxelFree/Source/VoxelExamples/VoxelExamples.Build.cs

31 lines
719 B
C#
Raw Permalink Normal View History

2023-07-03 16:17:13 +00:00
// Copyright 2020 Phyronnaz
using System.IO;
using UnrealBuildTool;
public class VoxelExamples : ModuleRules
{
public VoxelExamples(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
bEnforceIWYU = true;
bLegacyPublicIncludePaths = false;
#if UE_4_24_OR_LATER
#else
#endif
PublicIncludePaths.Add(Path.Combine(ModuleDirectory, "Public"));
PrivateIncludePaths.Add(Path.Combine(ModuleDirectory, "Private"));
PublicDependencyModuleNames.AddRange(
new string[]
{
"Voxel",
"Core",
"CoreUObject",
"Engine"
}
);
}
}