47 lines
1.7 KiB
JSON
47 lines
1.7 KiB
JSON
{
|
|
"editor.defaultFormatter": "chiehyu.vscode-astyle",
|
|
"terminal.integrated.env.osx": {
|
|
"CMAKE_DIR": "${workspaceFolder}",
|
|
"CMAKE_CFG": "RelWithDebInfo",
|
|
"CMAKE_TGT": "all",
|
|
},
|
|
"cmake.environment": {
|
|
"MFEM_DEBUG": "1",
|
|
"UBSAN_OPTIONS": "print_stacktrace=1:halt_on_error=1",
|
|
"MFEM_REPORT_KERNELS": "1",
|
|
// "ASAN_OPTIONS": "detect_leaks=1, strict_init_order=1, strict_string_checks=1, check_initialization_order=1, detect_stack_use_after_return=1",
|
|
"LSAN_OPTIONS": "suppressions=/Users/camierjs/.asan.sup"
|
|
},
|
|
"cmake.debugConfig": {
|
|
"args": [
|
|
"-o",
|
|
"2",
|
|
"-pa",
|
|
"-m",
|
|
"../data/inline-quad.mesh",
|
|
// "../data/square-disc.mesh",
|
|
"--visualization"
|
|
]
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"peacock.color": "#d2da6e",
|
|
"workbench.colorCustomizations": {
|
|
"activityBar.activeBackground": "#dfe497",
|
|
"activityBar.background": "#dfe497",
|
|
"activityBar.foreground": "#15202b",
|
|
"activityBar.inactiveForeground": "#15202b99",
|
|
"activityBarBadge.background": "#2ea9b1",
|
|
"activityBarBadge.foreground": "#15202b",
|
|
"commandCenter.border": "#15202b99",
|
|
"sash.hoverBorder": "#dfe497",
|
|
"statusBar.background": "#d2da6e",
|
|
"statusBar.foreground": "#15202b",
|
|
"statusBarItem.hoverBackground": "#c5d045",
|
|
"statusBarItem.remoteBackground": "#d2da6e",
|
|
"statusBarItem.remoteForeground": "#15202b",
|
|
"titleBar.activeBackground": "#d2da6e",
|
|
"titleBar.activeForeground": "#15202b",
|
|
"titleBar.inactiveBackground": "#d2da6e99",
|
|
"titleBar.inactiveForeground": "#15202b99"
|
|
}
|
|
} |