You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#codereview Mark.Satterthwaite, Michael.Trepka [CL 2708321 by Rolando Caloca in Main branch]
34 lines
921 B
C#
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"
|
|
);
|
|
}
|
|
}
|