Files
UnrealEngineUWP/Engine/Source/Programs/CrossCompilerTool/CrossCompilerTool.Build.cs
Rolando Caloca 2c7609d41d UE4 - CCT - Fix some cmd lines (atomic, packed globals into ub)
#codereview Mark.Satterthwaite, Michael.Trepka

[CL 2708321 by Rolando Caloca in Main branch]
2015-09-28 16:09:22 -04:00

34 lines
921 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class CrossCompilerTool : ModuleRules
{
public CrossCompilerTool(TargetInfo Target)
{
PublicIncludePaths.Add("Runtime/Launch/Public");
PrivateIncludePaths.Add("Runtime/Launch/Private"); // For LaunchEngineLoop.cpp include
PrivateIncludePaths.Add("Developer/Apple/MetalShaderFormat/Private"); // For Metal includes
PrivateIncludePaths.Add("Developer/ShaderFormatOpenGL/Private"); // For GLSL includes
PrivateIncludePaths.Add("Developer/ShaderCompilerCommon/Private"); // For Lexer includes
PrivateDependencyModuleNames.AddRange(new string []
{
"Core",
"Projects",
"ShaderCompilerCommon",
"MetalShaderFormat",
"ShaderFormatOpenGL",
"ShaderPreprocessor",
//@todo-rco: Remove me!
"ShaderCore",
});
AddThirdPartyPrivateStaticDependencies(Target,
"HLSLCC"
);
}
}