Initialize repo
This commit is contained in:
30
Source/CommonTime/CommonTime.Build.cs
Normal file
30
Source/CommonTime/CommonTime.Build.cs
Normal file
@ -0,0 +1,30 @@
|
||||
// Copyright 2023 MrRobin. All Rights Reserved.
|
||||
|
||||
using UnrealBuildTool;
|
||||
|
||||
public class CommonTime : ModuleRules
|
||||
{
|
||||
public CommonTime(ReadOnlyTargetRules Target) : base(Target)
|
||||
{
|
||||
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||
|
||||
PublicDependencyModuleNames.AddRange(new string[]
|
||||
{
|
||||
"Core",
|
||||
});
|
||||
|
||||
PublicDependencyModuleNames.AddRange(new string[]
|
||||
{
|
||||
"CoreUObject",
|
||||
"Engine",
|
||||
"Slate",
|
||||
"SlateCore",
|
||||
"DeveloperSettings",
|
||||
"UnrealEd",
|
||||
"PropertyEditor",
|
||||
"ClassViewer",
|
||||
"InputCore",
|
||||
"BlueprintGraph",
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user