Skip to content

Commit

Permalink
Updated vs code files.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquinffernandez committed Aug 27, 2024
1 parent b982ea0 commit 33c47f7
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 2 deletions.
19 changes: 19 additions & 0 deletions src/engine/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,25 @@
"ignoreFailures": true
}
]
},

// Advection model
{
"name": "Advection.",
"type": "cppdbg",
"request": "launch",
"program": "/home/joaquin/work/qss-solver/build/advection/advection",
"cwd": "/home/joaquin/work/qss-solver/build/advection/",
"environment": [],
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}

]
}
18 changes: 16 additions & 2 deletions src/engine/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
{
"files.associations": {
"random": "cpp"
"random": "cpp",
"qss_bdf.h": "c",
"array": "c",
"compare": "c",
"functional": "c",
"istream": "c",
"ostream": "c",
"ranges": "c",
"tuple": "c",
"type_traits": "c",
"utility": "c",
"typeindex": "c",
"typeinfo": "c",
"qss_data.h": "c"
},
"C_Cpp.dimInactiveRegions": true
"C_Cpp.dimInactiveRegions": true,
"sonarlint.pathToCompileCommands": "${workspaceFolder}/compile_commands.json"
}

0 comments on commit 33c47f7

Please sign in to comment.