File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed
Source/UnrealEnginePython Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,6 @@ public UnrealEnginePython(TargetInfo Target)
113113
114114 PublicIncludePaths . AddRange (
115115 new string [ ] {
116- "Editor/Sequencer/Private" ,
117116 // ... add public include paths required here ...
118117 }
119118 ) ;
@@ -132,7 +131,6 @@ public UnrealEnginePython(TargetInfo Target)
132131 "Core" ,
133132 "Sockets" ,
134133 "Networking" ,
135- "Sequencer"
136134 // ... add other public dependencies that you statically link with here ...
137135 }
138136 ) ;
@@ -148,7 +146,6 @@ public UnrealEnginePython(TargetInfo Target)
148146 "SlateCore" ,
149147 "MovieScene" ,
150148 "LevelSequence" ,
151- "Sequencer" ,
152149 "HTTP" ,
153150 "UMG" ,
154151 "AppFramework" ,
@@ -189,6 +186,20 @@ public UnrealEnginePython(TargetInfo Target)
189186 if ( UEBuildConfiguration . bBuildEditor )
190187#endif
191188 {
189+
190+ PublicIncludePaths . AddRange (
191+ new string [ ] {
192+ "Editor/Sequencer/Private" ,
193+ }
194+ ) ;
195+
196+ PublicDependencyModuleNames . AddRange (
197+ new string [ ]
198+ {
199+ "Sequencer" ,
200+ }
201+ ) ;
202+
192203 PrivateDependencyModuleNames . AddRange ( new string [ ] {
193204 "UnrealEd" ,
194205 "LevelEditor" ,
You can’t perform that action at this time.
0 commit comments