Files
UnrealEngineUWP/Engine/Source/Programs/TestPAL/TestPAL.Build.cs
Dmitry Rekman 6d3ba2bef9 TestPAL: add a test suite for DirectoryWatcher.
- Uncovers a problem with DWLinux - files added/removed in a subdirectory get reported with an incorrect path.

[CL 2479558 by Dmitry Rekman in Main branch]
2015-03-14 04:00:19 -04:00

22 lines
432 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class TestPAL : ModuleRules
{
public TestPAL(TargetInfo Target)
{
PublicIncludePaths.Add("Runtime/Launch/Public");
PrivateIncludePaths.Add("Runtime/Launch/Private"); // For LaunchEngineLoop.cpp include
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"Projects",
"DirectoryWatcher"
}
);
}
}