Files
UnrealEngineUWP/Engine/Source/Runtime/Linux/SteamController/SteamController.Build.cs
Dmitry Rekman db28733656 Fix SteamController header dependency.
Do not include SteamController headers if module isn't being compiled.

[CL 2221538 by Dmitry Rekman in Main branch]
2014-07-16 20:16:39 -04:00

24 lines
513 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class SteamController : ModuleRules
{
public SteamController(TargetInfo Target)
{
PrivateIncludePathModuleNames.Add("TargetPlatform");
Definitions.Add("WITH_STEAMCONTROLLER=1");
PrivateDependencyModuleNames.AddRange(new string[]
{
"Core",
"CoreUObject",
"Engine",
});
AddThirdPartyPrivateStaticDependencies(Target,
"Steamworks"
);
}
}