From d5310c3455f9849243b7b950deb4e910aa1f24dd Mon Sep 17 00:00:00 2001 From: ivey Date: Mon, 15 Jun 2020 15:54:16 -0400 Subject: Initial commit of the UGCExample Project --- Source/UGCExample/UGCExample.Build.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Source/UGCExample/UGCExample.Build.cs (limited to 'Source/UGCExample/UGCExample.Build.cs') diff --git a/Source/UGCExample/UGCExample.Build.cs b/Source/UGCExample/UGCExample.Build.cs new file mode 100644 index 0000000..53380d6 --- /dev/null +++ b/Source/UGCExample/UGCExample.Build.cs @@ -0,0 +1,23 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +using UnrealBuildTool; + +public class UGCExample : ModuleRules +{ + public UGCExample(ReadOnlyTargetRules Target) : base(Target) + { + PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; + + PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" }); + + PrivateDependencyModuleNames.AddRange(new string[] { }); + + // Uncomment if you are using Slate UI + // PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" }); + + // Uncomment if you are using online features + // PrivateDependencyModuleNames.Add("OnlineSubsystem"); + + // To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true + } +} -- cgit v1.2.3