Compare commits

..

2 Commits

Author SHA1 Message Date
Brock Allen
2e0be716a3 fix(vscode): compile_commands.json path 2024-01-27 14:12:06 -08:00
Brock Allen
b05d664265 fix(devcontainer): SELinux permissions 2024-01-27 14:12:06 -08:00
2 changed files with 6 additions and 2 deletions

View File

@@ -5,7 +5,11 @@
"build": { "build": {
"dockerfile": "../builder.Dockerfile" "dockerfile": "../builder.Dockerfile"
}, },
"runArgs": ["--platform=linux/amd64"], "workspaceMount": "",
"runArgs": [
"--volume=${localWorkspaceFolder}:/workspaces/${localWorkspaceFolderBasename}:Z",
"--platform=linux/amd64"
],
"customizations": { "customizations": {
"vscode": { "vscode": {
"settings": { "settings": {

View File

@@ -5,7 +5,7 @@
"[cpp]": { "[cpp]": {
"editor.formatOnSave": true "editor.formatOnSave": true
}, },
"C_Cpp.default.compileCommands": "${workspaceFolder}/src/build/compile_commands.json", "C_Cpp.default.compileCommands": "${workspaceFolder}/build/compile_commands.json",
"cmake.configureOnOpen": true, "cmake.configureOnOpen": true,
"extensions.ignoreRecommendations": true "extensions.ignoreRecommendations": true
} }