Skip to content

Commit

Permalink
add .vscode folder for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
imronuke committed Feb 23, 2024
1 parent 6d39b68 commit bd2e366
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [

{
"name": "Run GDB",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build/komodo",
"args": ["${workspaceRoot}/smpl/static/NEACRP/A2"],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"externalConsole": false,
"MIMode": "gdb",
"preLaunchTask": "build",

}
]
}
18 changes: 18 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"editor.rulers": [132],
"workbench.colorCustomizations": {
"editorRuler.foreground": "#ff4081"
},
"cmake.configureOnOpen": false,
//"fortran-ls.executablePath": "/home/imronuke/.local/lib/python3.8/site-packages/fortls",
"fortran.fortls.disabled": false,
"spellright.language": [
"en"
],
"spellright.documentTypes": [
"markdown",
"latex",
"plaintext"
],
"fortran.fortls.path": "fortls",
}
Empty file added .vscode/slnx.sqlite
Empty file.
18 changes: 18 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
// "command": "make -j 4",
"command": "cd build && make -j 4",
"options": {
"cwd": "${workspaceRoot}"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

0 comments on commit bd2e366

Please sign in to comment.