Skip to content

Instantly share code, notes, and snippets.

@payoto
Created December 28, 2021 23:47
Show Gist options
  • Save payoto/877dfeb6101850877b74dcdd1bbebe63 to your computer and use it in GitHub Desktop.
Save payoto/877dfeb6101850877b74dcdd1bbebe63 to your computer and use it in GitHub Desktop.
VS Code settings for the RSVS3D repository on windows
{
"recommendations": [
"cschlosser.doxdocgen",
"streetsidesoftware.code-spell-checker",
"github.vscode-pull-request-github",
"eamodio.gitlens",
"visualstudioexptteam.vscodeintellicode",
"redhat.vscode-yaml",
"ms-vscode.cpptools",
"formulahendry.code-runner"
]
}
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug RSVS",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}\\SRCC\\RSVS3D.exe",
"args": ["-i"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}\\SRCC",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "C:\\PATH\\TO\\gdb.exe",
"setupCommands": [
{
"description": "Activer l'impression en mode Pretty pour gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
{
"files.associations": {
"iosfwd": "cpp",
"deque": "cpp",
"format": "cpp",
"list": "cpp",
"vector": "cpp",
"xstring": "cpp",
"*.ipp": "cpp",
"algorithm": "cpp",
"array": "cpp",
"atomic": "cpp",
"bit": "cpp",
"bitset": "cpp",
"cctype": "cpp",
"charconv": "cpp",
"chrono": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"codecvt": "cpp",
"compare": "cpp",
"complex": "cpp",
"concepts": "cpp",
"csignal": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"exception": "cpp",
"filesystem": "cpp",
"forward_list": "cpp",
"fstream": "cpp",
"functional": "cpp",
"initializer_list": "cpp",
"iomanip": "cpp",
"ios": "cpp",
"iostream": "cpp",
"istream": "cpp",
"iterator": "cpp",
"limits": "cpp",
"locale": "cpp",
"map": "cpp",
"memory": "cpp",
"mutex": "cpp",
"new": "cpp",
"numeric": "cpp",
"optional": "cpp",
"ostream": "cpp",
"queue": "cpp",
"random": "cpp",
"ratio": "cpp",
"regex": "cpp",
"set": "cpp",
"sstream": "cpp",
"stack": "cpp",
"stdexcept": "cpp",
"stop_token": "cpp",
"streambuf": "cpp",
"string": "cpp",
"strstream": "cpp",
"system_error": "cpp",
"thread": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"typeindex": "cpp",
"typeinfo": "cpp",
"unordered_map": "cpp",
"unordered_set": "cpp",
"utility": "cpp",
"valarray": "cpp",
"variant": "cpp",
"xfacet": "cpp",
"xhash": "cpp",
"xiosbase": "cpp",
"xlocale": "cpp",
"xlocbuf": "cpp",
"xlocinfo": "cpp",
"xlocmes": "cpp",
"xlocmon": "cpp",
"xlocnum": "cpp",
"xloctime": "cpp",
"xmemory": "cpp",
"xstddef": "cpp",
"xtr1common": "cpp",
"xtree": "cpp",
"xutility": "cpp",
"csetjmp": "cpp",
"condition_variable": "cpp",
"future": "cpp",
"scoped_allocator": "cpp",
"shared_mutex": "cpp"
},
"cmake.configureOnOpen": true,
"C_Cpp.default.includePath": [
".\\SRCC\\incl\\",
".\\SRCC\\modules\\polyscope\\include",
".\\SRCC\\modules\\rsvs3d-externals\\boost_1_68\\include",
".\\SRCC\\modules\\rsvs3d-externals\\json\\include",
".\\SRCC\\modules\\rsvs3d-externals\\Eigen\\include",
".\\SRCC\\modules\\rsvs3d-externals\\cxxopts-2.1.1\\include",
".\\SRCC\\modules\\polyscope\\deps\\glm",
".\\SRCC\\modules\\polyscope\\deps\\imgui\\imgui",
".\\SRCC\\modules\\tetgen"
],
"cSpell.words": [
"polyscopersvs",
"RSVS",
"verts",
"volus",
"voronoi",
"voxel",
"SRCC",
"snaxs",
"snax",
"snak",
"rsvs",
"voro",
"volu",
],
"cSpell.allowCompoundWords": true,
"cSpell.ignoreRegExpList": [
"rsvs.*"
],
"cSpell.showAutocompleteSuggestions": true,
}
{
"version": "2.0.0",
"tasks": [
{
"label": "Make project",
"type": "shell",
"command": "make",
"args": [
"all",
"-j",
"6"
],
"options": {
"cwd": "${workspaceFolder}/SRCC"
},
"problemMatcher": [
{
"owner": "cpp",
"fileLocation": [
"relative",
"${workspaceFolder}/SRCC"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Clean",
"type": "shell",
"command": "make",
"args": [
"clean"
],
"options": {
"cwd": "${workspaceFolder}/SRCC"
},
"problemMatcher": []
},
{
"label": "Clean dependencies",
"type": "shell",
"command": "make",
"args": [
"clean-deps"
],
"options": {
"cwd": "${workspaceFolder}/SRCC"
},
"problemMatcher": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment