// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved. using UnrealBuildTool; public class ShaderFormatVectorVM : ModuleRules { public ShaderFormatVectorVM(ReadOnlyTargetRules Target) : base(Target) { PrivateIncludePathModuleNames.AddRange( new string[] { "TargetPlatform", } ); PrivateDependencyModuleNames.AddRange( new string[] { "Core", "CoreUObject", "ShaderCore", "ShaderCompilerCommon", "ShaderPreprocessor", "VectorVM", } ); AddEngineThirdPartyPrivateStaticDependencies(Target, "HLSLCC" ); } }