diff options
| author | ivey <[email protected]> | 2020-06-15 15:54:16 -0400 |
|---|---|---|
| committer | ivey <[email protected]> | 2020-06-15 15:54:16 -0400 |
| commit | d5310c3455f9849243b7b950deb4e910aa1f24dd (patch) | |
| tree | 994a81eec10538d2a1efd9ed78469a249ff086f2 /Source/UGCExample.Target.cs | |
| parent | Updated image paths. (diff) | |
| download | ugcexample-d5310c3455f9849243b7b950deb4e910aa1f24dd.tar.xz ugcexample-d5310c3455f9849243b7b950deb4e910aa1f24dd.zip | |
Initial commit of the UGCExample Project
Diffstat (limited to 'Source/UGCExample.Target.cs')
| -rw-r--r-- | Source/UGCExample.Target.cs | 14 |
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" } ); + } +} |