You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
The review of the source code is in progress. #fyi jeanluc.corenthin #rb jeanluc.corenthin #preflight 6081e4e5e7aac100014c47ef [CL 16098667 by David Lesage in ue5-main branch]
19 lines
310 B
C#
19 lines
310 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
using System.IO;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class CADKernel : ModuleRules
|
|
{
|
|
public CADKernel(ReadOnlyTargetRules Target)
|
|
: base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
} |