2025-06-04 20:28:09 -04:00
|
|
|
{
|
2025-06-06 19:12:32 -04:00
|
|
|
"about-the-build-system": [
|
|
|
|
|
"",
|
|
|
|
|
"The unreal build system generates Integration.code-workspace.",
|
|
|
|
|
"That generated file is no good. Instead, we generate our own,",
|
|
|
|
|
"as part of build-everything.py",
|
|
|
|
|
"",
|
|
|
|
|
"Don't edit Integration.code-worspace, instead, edit",
|
|
|
|
|
"Integration.code-workspace.tpl.json, and then run",
|
|
|
|
|
"build-everything.py to rebuild.",
|
|
|
|
|
""
|
|
|
|
|
],
|
2025-06-04 20:28:09 -04:00
|
|
|
"folders": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Integration",
|
2025-06-06 19:12:32 -04:00
|
|
|
"path": "[INTEGRATION]"
|
2025-06-04 20:28:09 -04:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "UE5",
|
2025-06-06 19:12:32 -04:00
|
|
|
"path": "[UNREALENGINE]"
|
2025-06-04 20:28:09 -04:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"settings": {
|
|
|
|
|
"typescript.tsc.autoDetect": "off",
|
|
|
|
|
"lldb.dereferencePointers": false,
|
|
|
|
|
"npm.autoDetect": "off",
|
|
|
|
|
"files.watcherExclude": {
|
2025-07-02 17:18:31 -04:00
|
|
|
"[UNREALENGINE]/Engine/**": true,
|
|
|
|
|
"[UNREALENGINE]/Samples/**": true,
|
|
|
|
|
"[UNREALENGINE]/Templates/**": true
|
2025-06-04 20:28:09 -04:00
|
|
|
},
|
|
|
|
|
"files.associations": {
|
|
|
|
|
"**/include/**": "cpp",
|
|
|
|
|
"**/bits/**": "cpp",
|
|
|
|
|
"**/c++/**": "cpp",
|
|
|
|
|
"**/x86_64-linux-gnu/**": "cpp",
|
|
|
|
|
"*.ipp": "cpp",
|
|
|
|
|
"*.inc": "cpp"
|
2025-06-09 15:38:14 -04:00
|
|
|
},
|
2025-06-11 18:46:10 -04:00
|
|
|
"editor.acceptSuggestionOnEnter": "off",
|
2025-06-09 15:38:14 -04:00
|
|
|
"C_Cpp.intelliSenseEngine": "disabled",
|
2025-06-23 16:56:06 -04:00
|
|
|
"clangd.path": "/usr/bin/clangd-15",
|
2025-06-09 15:38:14 -04:00
|
|
|
"clangd.arguments": [
|
2025-06-18 16:25:46 -04:00
|
|
|
"--log=verbose",
|
2025-06-16 21:32:40 -04:00
|
|
|
"--query-driver=/usr/bin/g++",
|
2025-06-09 15:38:14 -04:00
|
|
|
"--compile-commands-dir=[INTEGRATION]/.vscode",
|
|
|
|
|
"--header-insertion=never"
|
|
|
|
|
],
|
2025-12-03 19:55:53 -05:00
|
|
|
"C_Cpp.autocomplete": "disabled",
|
2026-02-09 13:54:00 -05:00
|
|
|
"search.useIgnoreFiles": true,
|
|
|
|
|
"search.exclude": {
|
|
|
|
|
"**/Intermediate": true,
|
|
|
|
|
"**/Saved": true,
|
|
|
|
|
"**/Binaries": true,
|
|
|
|
|
"**/DerivedDataCache": true,
|
|
|
|
|
"**/*.generated.h": true,
|
|
|
|
|
"**/*.gen.cpp": true
|
|
|
|
|
}
|
2025-06-04 20:28:09 -04:00
|
|
|
},
|
|
|
|
|
"extensions": {
|
|
|
|
|
"recommendations": [
|
2025-06-09 15:38:14 -04:00
|
|
|
"llvm-vs-code-extensions.vscode-clangd",
|
2025-06-04 20:28:09 -04:00
|
|
|
"vadimcn.vscode-lldb",
|
|
|
|
|
"dfarley1.file-picker",
|
|
|
|
|
"ms-python.python",
|
|
|
|
|
"ms-dotnettools.csharp",
|
|
|
|
|
"ms-vscode.mono-debug"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"tasks": {
|
|
|
|
|
"version": "2.0.0",
|
2025-06-11 19:10:14 -04:00
|
|
|
"tasks": {
|
|
|
|
|
"for-each" : [
|
|
|
|
|
{ "CMD" : "python3 build.py c++", "DEFAULT":true },
|
|
|
|
|
{ "CMD" : "python3 build.py all", "DEFAULT":false },
|
|
|
|
|
{ "CMD" : "python3 build.py clean", "DEFAULT":false }
|
|
|
|
|
],
|
|
|
|
|
"body" : {
|
|
|
|
|
"label": "[CMD]",
|
2025-06-04 20:28:09 -04:00
|
|
|
"group": {
|
|
|
|
|
"kind": "build",
|
2025-06-11 19:10:14 -04:00
|
|
|
"isDefault": "[DEFAULT]"
|
2025-06-04 20:28:09 -04:00
|
|
|
},
|
2025-06-11 19:10:14 -04:00
|
|
|
"command": "[CMD]",
|
2025-06-09 15:38:14 -04:00
|
|
|
"presentation": {
|
|
|
|
|
"clear": true
|
|
|
|
|
},
|
2026-01-14 16:35:54 -05:00
|
|
|
"problemMatcher": [
|
|
|
|
|
{
|
|
|
|
|
"base": "$gcc",
|
2026-01-14 18:44:16 -05:00
|
|
|
"source": "build.py",
|
2026-01-14 16:35:54 -05:00
|
|
|
"fileLocation": ["relative", "${workspaceFolder}/luprex"]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"base": "$gcc",
|
2026-01-14 18:44:16 -05:00
|
|
|
"source": "build.py",
|
2026-01-14 16:35:54 -05:00
|
|
|
"fileLocation": ["relative", "${workspaceFolder}"]
|
|
|
|
|
}
|
|
|
|
|
],
|
2025-06-09 15:38:14 -04:00
|
|
|
"type": "shell"
|
2025-06-04 20:28:09 -04:00
|
|
|
}
|
2025-06-11 19:10:14 -04:00
|
|
|
}
|
2025-06-04 20:28:09 -04:00
|
|
|
},
|
|
|
|
|
"launch": {
|
|
|
|
|
"version": "0.2.0",
|
2025-06-06 19:12:32 -04:00
|
|
|
"configurations": {
|
2025-06-27 15:11:54 -04:00
|
|
|
"append1" : {
|
|
|
|
|
"for-each": [
|
|
|
|
|
{ "SERVER" : "Standalone" },
|
|
|
|
|
{ "SERVER" : "LocalHost" },
|
|
|
|
|
{ "SERVER" : "192.168.1.155" },
|
|
|
|
|
{ "SERVER" : "192.168.1.156" }
|
2025-06-06 19:12:32 -04:00
|
|
|
],
|
2025-06-27 15:11:54 -04:00
|
|
|
"body": {
|
|
|
|
|
"name": "Server=[SERVER]",
|
|
|
|
|
"request": "launch",
|
2025-07-02 16:01:18 -04:00
|
|
|
"program": "[UNREALENGINE]/Engine/Binaries/Linux/UnrealEditor-Linux-[DEBUG]",
|
2025-06-27 15:11:54 -04:00
|
|
|
"preLaunchTask": "python3 build.py c++",
|
|
|
|
|
"args": [
|
|
|
|
|
"[INTEGRATION]/Integration.uproject",
|
|
|
|
|
"-userdir=User/[USER]",
|
|
|
|
|
"-LuprexServer=[SERVER]"
|
|
|
|
|
],
|
|
|
|
|
"cwd": "[INTEGRATION]",
|
|
|
|
|
"type": "lldb",
|
2025-07-02 16:01:18 -04:00
|
|
|
"console": "integratedTerminal",
|
2025-06-27 15:11:54 -04:00
|
|
|
"initCommands": [
|
|
|
|
|
"command script import [UNREALENGINE]/Engine/Extras/LLDBDataFormatters/UEDataFormatters_2ByteChars.py",
|
|
|
|
|
"settings set target.inline-breakpoint-strategy always",
|
|
|
|
|
"target stop-hook add --one-liner \"p ::UngrabAllInputImpl()\""
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"append2" : [
|
|
|
|
|
{
|
|
|
|
|
"name": "Luprex Server",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"program": "[INTEGRATION]/luprex/build/[OS]/luprexstatic",
|
|
|
|
|
"preLaunchTask": "python3 build.py c++",
|
|
|
|
|
"args": [ "lpxserver" ],
|
|
|
|
|
"cwd": "[INTEGRATION]/luprex",
|
|
|
|
|
"type": "lldb",
|
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
|
"initCommands": [
|
|
|
|
|
"settings set target.inline-breakpoint-strategy always"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
2025-06-06 19:12:32 -04:00
|
|
|
}
|
2025-06-04 20:28:09 -04:00
|
|
|
}
|
2025-06-09 15:38:14 -04:00
|
|
|
}
|