aboutsummaryrefslogtreecommitdiff
path: root/Source/UGCExampleEditor.Target.cs
diff options
context:
space:
mode:
authorivey <[email protected]>2020-06-15 15:54:16 -0400
committerivey <[email protected]>2020-06-15 15:54:16 -0400
commitd5310c3455f9849243b7b950deb4e910aa1f24dd (patch)
tree994a81eec10538d2a1efd9ed78469a249ff086f2 /Source/UGCExampleEditor.Target.cs
parentUpdated image paths. (diff)
downloadugcexample-d5310c3455f9849243b7b950deb4e910aa1f24dd.tar.xz
ugcexample-d5310c3455f9849243b7b950deb4e910aa1f24dd.zip
Initial commit of the UGCExample Project
Diffstat (limited to 'Source/UGCExampleEditor.Target.cs')
-rw-r--r--Source/UGCExampleEditor.Target.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Source/UGCExampleEditor.Target.cs b/Source/UGCExampleEditor.Target.cs
new file mode 100644
index 0000000..c7ba124
--- /dev/null
+++ b/Source/UGCExampleEditor.Target.cs
@@ -0,0 +1,14 @@
+// Copyright Epic Games, Inc. All Rights Reserved.
+
+using UnrealBuildTool;
+using System.Collections.Generic;
+
+public class UGCExampleEditorTarget : TargetRules
+{
+ public UGCExampleEditorTarget( TargetInfo Target) : base(Target)
+ {
+ Type = TargetType.Editor;
+ DefaultBuildSettings = BuildSettingsVersion.V2;
+ ExtraModuleNames.AddRange( new string[] { "UGCExample" } );
+ }
+}