Lesson 54 - Creating a Module
This commit is contained in:
26
Source/DedicatedServers/DedicatedServers.Build.cs
Normal file
26
Source/DedicatedServers/DedicatedServers.Build.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||
|
||||
using System.IO;
|
||||
using UnrealBuildTool;
|
||||
using System.Linq;
|
||||
|
||||
public class DedicatedServers : ModuleRules
|
||||
{
|
||||
public DedicatedServers(ReadOnlyTargetRules Target) : base(Target)
|
||||
{
|
||||
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||
|
||||
PublicDependencyModuleNames.AddRange(new string[]
|
||||
{
|
||||
"Core",
|
||||
"CoreUObject",
|
||||
"Engine"
|
||||
});
|
||||
|
||||
PrivateDependencyModuleNames.AddRange(new string[]
|
||||
{
|
||||
"Slate",
|
||||
"SlateCore"
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user