From 9e680d5a662087ad450ed119b65b039d8c27f0ba Mon Sep 17 00:00:00 2001 From: jyelon Date: Thu, 7 Nov 2024 16:51:50 -0500 Subject: [PATCH] More lldb configuration, change uproject to 'version 10' to make it impossible to open project in unreal editor except via launch configuration --- EnginePatches/uproject | 2 +- build-everything.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/EnginePatches/uproject b/EnginePatches/uproject index 9acc62ad..41bd0c6f 100644 --- a/EnginePatches/uproject +++ b/EnginePatches/uproject @@ -1,7 +1,7 @@ { "FileVersion": 3, - "EngineAssociation": "5.3", + "EngineAssociation": "10.0", "Category": "", "Description": "", "Modules": [ diff --git a/build-everything.py b/build-everything.py index 9f926433..9e9f9f21 100755 --- a/build-everything.py +++ b/build-everything.py @@ -162,8 +162,9 @@ LUPREXBUILDTASK["options"]["cwd"] = f"{INTEGRATION}/luprex" # LLDBINIT=[ - f"command script import {UNREALENGINE}/Engine/Extras/LLDBDataFormatters/UEDataFormatters_2ByteChars.py", - 'target stop-hook add --one-liner "p ::UngrabAllInputImpl()"', + f'command script import {UNREALENGINE}/Engine/Extras/LLDBDataFormatters/UEDataFormatters_2ByteChars.py', + f'settings set target.inline-breakpoint-strategy always', + f'target stop-hook add --one-liner "p ::UngrabAllInputImpl()"', ] for config in WORKSPACE["launch"]["configurations"]: