diff --git a/Source/UnrealEnginePython/UnrealEnginePython.Build.cs b/Source/UnrealEnginePython/UnrealEnginePython.Build.cs index 89f0e9dc4..a621ada49 100644 --- a/Source/UnrealEnginePython/UnrealEnginePython.Build.cs +++ b/Source/UnrealEnginePython/UnrealEnginePython.Build.cs @@ -113,7 +113,6 @@ public UnrealEnginePython(TargetInfo Target) PublicIncludePaths.AddRange( new string[] { - "Editor/Sequencer/Private", // ... add public include paths required here ... } ); @@ -132,7 +131,6 @@ public UnrealEnginePython(TargetInfo Target) "Core", "Sockets", "Networking", - "Sequencer" // ... add other public dependencies that you statically link with here ... } ); @@ -148,7 +146,6 @@ public UnrealEnginePython(TargetInfo Target) "SlateCore", "MovieScene", "LevelSequence", - "Sequencer", "HTTP", "UMG", "AppFramework", @@ -189,6 +186,20 @@ public UnrealEnginePython(TargetInfo Target) if (UEBuildConfiguration.bBuildEditor) #endif { + + PublicIncludePaths.AddRange( + new string[] { + "Editor/Sequencer/Private", + } + ); + + PublicDependencyModuleNames.AddRange( + new string[] + { + "Sequencer", + } + ); + PrivateDependencyModuleNames.AddRange(new string[]{ "UnrealEd", "LevelEditor",