aboutsummaryrefslogtreecommitdiff
path: root/Source/UGCExample.Target.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/UGCExample.Target.cs')
-rw-r--r--Source/UGCExample.Target.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Source/UGCExample.Target.cs b/Source/UGCExample.Target.cs
new file mode 100644
index 0000000..41965d9
--- /dev/null
+++ b/Source/UGCExample.Target.cs
@@ -0,0 +1,14 @@
+// Copyright Epic Games, Inc. All Rights Reserved.
+
+using UnrealBuildTool;
+using System.Collections.Generic;
+
+public class UGCExampleTarget : TargetRules
+{
+ public UGCExampleTarget( TargetInfo Target) : base(Target)
+ {
+ Type = TargetType.Game;
+ DefaultBuildSettings = BuildSettingsVersion.V2;
+ ExtraModuleNames.AddRange( new string[] { "UGCExample" } );
+ }
+}