diff options
Diffstat (limited to 'Source/UGCExampleEditor.Target.cs')
| -rw-r--r-- | Source/UGCExampleEditor.Target.cs | 14 |
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" } ); + } +} |