OpenRTX/.devcontainer/devcontainer.json
Morgan Diepart f070a477a6 build: rename "build_arm" file to "build_cm4"
In file cross_cm7.txt, the target cpu was wrongly identified as being
Cortex M4. This does not affect compilation.
Also, file cross_arm.txt was renamed cross_cm4.txt and folder build_arm
was renamed to build_cm4. References to this were also updated.
2026-02-14 16:00:51 +01:00

19 lines
489 B
JSON

{
"build": {
"dockerfile": "Dockerfile",
"context": "..",
"args": {
"BUILDKIT_STEP_LOG_MAX_SIZE": "10485760" // 10 MiB
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools-extension-pack",
"mesonbuild.mesonbuild",
"ms-python.python"
]
}
},
"postCreateCommand": "meson setup --cross-file cross_cm4.txt build_cm4 && meson setup --cross-file cross_cm7.txt build_cm7 && meson setup build_linux"
}