Files
integration/Integration.code-workspace.tpl.json

154 lines
5.4 KiB
JSON
Raw Normal View History

{
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.py",
2025-06-06 19:12:32 -04:00
"",
"Don't edit Integration.code-worspace, instead, edit",
"Integration.code-workspace.tpl.json, and then run",
"build.py code-workspace to rebuild.",
2025-06-06 19:12:32 -04:00
""
],
"folders": [
{
"name": "Integration",
2025-06-06 19:12:32 -04:00
"path": "[INTEGRATION]"
},
{
"name": "UE5",
2025-06-06 19:12:32 -04:00
"path": "[UNREALENGINE]"
}
],
"settings": {
"files.autoSave": "afterDelay",
"typescript.tsc.autoDetect": "off",
"lldb.dereferencePointers": false,
"npm.autoDetect": "off",
"files.watcherExclude": {
"[UNREALENGINE]/Engine/**": true,
"[UNREALENGINE]/Samples/**": true,
"[UNREALENGINE]/Templates/**": true
},
"files.associations": {
"**/include/**": "cpp",
"**/bits/**": "cpp",
"**/c++/**": "cpp",
"**/x86_64-linux-gnu/**": "cpp",
"*.ipp": "cpp",
"*.inc": "cpp"
},
"editor.acceptSuggestionOnEnter": "off",
"C_Cpp.intelliSenseEngine": "disabled",
2025-06-23 16:56:06 -04:00
"clangd.path": "/usr/bin/clangd-15",
"clangd.arguments": [
"--log=verbose",
2025-06-16 21:32:40 -04:00
"--query-driver=/usr/bin/g++",
2026-03-08 22:49:30 -04:00
"--background-index",
"--compile-commands-dir=[INTEGRATION]/.vscode",
"--header-insertion=never"
],
"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,
"**/*.d": true
2026-02-09 13:54:00 -05:00
}
},
"extensions": {
"recommendations": [
"llvm-vs-code-extensions.vscode-clangd",
"vadimcn.vscode-lldb",
"dfarley1.file-picker",
"ms-python.python",
"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]",
"group": {
"kind": "build",
2025-06-11 19:10:14 -04:00
"isDefault": "[DEFAULT]"
},
2025-06-11 19:10:14 -04:00
"command": "[CMD]",
"presentation": {
"clear": true
},
"problemMatcher": [
{
"owner": "build-integration",
"source": "build.py",
"fileLocation": ["relative", "${workspaceFolder}"],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
"file": 1, "line": 2, "column": 3, "severity": 4, "message": 5
}
}
],
"type": "shell"
}
2025-06-11 19:10:14 -04:00
}
},
"launch": {
"version": "0.2.0",
2025-06-06 19:12:32 -04:00
"configurations": {
"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
],
"body": {
"name": "Server=[SERVER]",
"request": "launch",
"program": "[UNREALENGINE]/Engine/Binaries/Linux/UnrealEditor-Linux-[DEBUG]",
"preLaunchTask": "python3 build.py c++",
"args": [
"[INTEGRATION]/Integration.uproject",
"-userdir=User/[USER]",
"-LuprexServer=[SERVER]"
],
"cwd": "[INTEGRATION]",
"type": "lldb",
"console": "integratedTerminal",
"initCommands": [
"command script import [UNREALENGINE]/Engine/Extras/LLDBDataFormatters/UEDataFormatters_2ByteChars.py",
"settings set target.inline-breakpoint-strategy always",
"process handle SIGTRAP --notify false --pass false --stop false",
"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
}
}
}