You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Updated build.cs files to use new shader module. #jira #rb Joe.Kirchoff and guillaume.abadie [CL 26664107 by bryan sefcik in ue5-main branch]
20 lines
505 B
C#
20 lines
505 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.IO;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class Shaders : ModuleRules
|
|
{
|
|
public Shaders(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
// External so we don't build a DLL for this, it is header only.
|
|
Type = ModuleType.External;
|
|
ModuleIncludePathWarningLevel = WarningLevel.Off;
|
|
|
|
PublicIncludePaths.Add(Path.Combine(ModuleDirectory, "Public"));
|
|
PublicIncludePaths.Add(Path.Combine(ModuleDirectory, "Shared"));
|
|
}
|
|
}
|
|
}
|