-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMachRace.Build.cs
More file actions
25 lines (17 loc) · 864 Bytes
/
MachRace.Build.cs
File metadata and controls
25 lines (17 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Alpha only, not for distribution.
using UnrealBuildTool;
public class MachRace : ModuleRules
{
public MachRace(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "Http", "TweenMaker" });
PrivateDependencyModuleNames.AddRange(new string[] { });
// Uncomment if you are using Slate UI
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
// Uncomment if you are using online features
// PrivateDependencyModuleNames.Add("OnlineSubsystem");
// To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true
PrivateDependencyModuleNames.AddRange(new string[] { "VaRestPlugin","SodiumUE4" });
}
}