A few little fixes
This commit is contained in:
@@ -121,7 +121,7 @@ private:
|
|||||||
FHttpResultCallback OnComplete;
|
FHttpResultCallback OnComplete;
|
||||||
};
|
};
|
||||||
|
|
||||||
TQueue<TSharedPtr<FPendingRequest>> RequestQueue;
|
TQueue<TSharedPtr<FPendingRequest>, EQueueMode::Mpsc> RequestQueue;
|
||||||
int32 Port = 9847;
|
int32 Port = 9847;
|
||||||
bool bRunning = false;
|
bool bRunning = false;
|
||||||
bool bIsEditor = false;
|
bool bIsEditor = false;
|
||||||
|
|||||||
3
build.py
3
build.py
@@ -324,9 +324,10 @@ def build_compile_commands_from_integration():
|
|||||||
clang = str(clangs[0])
|
clang = str(clangs[0])
|
||||||
# Build the table of source files and RSP files.
|
# Build the table of source files and RSP files.
|
||||||
mods1 = Path(f"{INTEGRATION}/Intermediate/Build/{OS}").rglob(f"UnrealEditor/{DEBUG}/**/Module.*.o.rsp")
|
mods1 = Path(f"{INTEGRATION}/Intermediate/Build/{OS}").rglob(f"UnrealEditor/{DEBUG}/**/Module.*.o.rsp")
|
||||||
|
mods1p = Path(f"{INTEGRATION}/Plugins").rglob(f"Intermediate/Build/{OS}/x64/UnrealEditor/{DEBUG}/**/Module.*.o.rsp")
|
||||||
mods2 = Path(f"{UNREALENGINE}/Engine/Intermediate/Build/{OS}").rglob("UnrealEditor/Development/**/Module.*.o.rsp")
|
mods2 = Path(f"{UNREALENGINE}/Engine/Intermediate/Build/{OS}").rglob("UnrealEditor/Development/**/Module.*.o.rsp")
|
||||||
cpp_to_rsp = {}
|
cpp_to_rsp = {}
|
||||||
for mod in itertools.chain(mods1, mods2):
|
for mod in itertools.chain(mods1, mods1p, mods2):
|
||||||
rsp = str(mod)
|
rsp = str(mod)
|
||||||
cpp = os.path.abspath(rsp.removesuffix(".o.rsp"))
|
cpp = os.path.abspath(rsp.removesuffix(".o.rsp"))
|
||||||
cpp_to_rsp[cpp] = rsp
|
cpp_to_rsp[cpp] = rsp
|
||||||
|
|||||||
Reference in New Issue
Block a user