You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#lockdown nick.penwarden #rb none #ROBOMERGE-OWNER: lina.halper #ROBOMERGE-AUTHOR: jeanmichel.dignard #ROBOMERGE-SOURCE: CL 6890764 in //UE4/Main/... #ROBOMERGE-BOT: ANIM (Main -> Dev-Anim) (v366-6836689) [CL 6942267 by Lina Halper in Dev-Anim branch]
31 lines
548 B
C#
31 lines
548 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
using UnrealBuildTool;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class PythonScriptPluginPreload : ModuleRules
|
|
{
|
|
public PythonScriptPluginPreload(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
}
|
|
);
|
|
|
|
if (Target.bBuildEditor)
|
|
{
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"Python",
|
|
}
|
|
);
|
|
}
|
|
else
|
|
{
|
|
PrivateDefinitions.Add("WITH_PYTHON=0");
|
|
}
|
|
}
|
|
}
|
|
}
|