Files
UnrealEngineUWP/Engine/Source/Runtime/Datasmith/CADKernel/CADKernel.Build.cs
David Lesage 55e2b555d9 CADKernel Source Code v0.01
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]
2021-04-22 17:31:14 -04:00

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",
}
);
}
}
}