You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-166269 #rb yohann.dossantos #preflight 63e12ffa797b029c0a6507fe [CL 24032337 by JeanMichel Dignard in ue5-main branch]
21 lines
397 B
C#
21 lines
397 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class CollectionManager : ModuleRules
|
|
{
|
|
public CollectionManager(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"DirectoryWatcher",
|
|
"SourceControl"
|
|
}
|
|
);
|
|
}
|
|
}
|