You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- still Windows platform only #jira UETOOL-4742 #rb geoffrey.douglas, alejandro.arango, chris.norden #preflight 61e817fd614a721b0c41c7d0 #ROBOMERGE-AUTHOR: simon.therriault #ROBOMERGE-SOURCE: CL 18657870 in //UE5/Release-5.0/... via CL 18657890 via CL 18657913 #ROBOMERGE-BOT: UE5 (Release-Engine-Test -> Main) (v900-18638592) [CL 18657937 by simon therriault in ue5-main branch]
25 lines
455 B
C#
25 lines
455 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class OpenCVHelper: ModuleRules
|
|
{
|
|
public OpenCVHelper(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine"
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"OpenCV",
|
|
"Projects",
|
|
}
|
|
);
|
|
}
|
|
}
|