add vscode workspace

This commit is contained in:
Laurent Perron
2019-01-05 14:27:39 +01:00
parent a27deb3468
commit 814a11fcf6

30
or-tools.code-workspace Normal file
View File

@@ -0,0 +1,30 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.associations": {
"scoped_allocator": "cpp",
"*.inc": "cpp"
},
"C_Cpp.clang_format_fallbackStyle": "Google",
"C_Cpp.default.includePath": [
"${workspaceRoot}",
"${workspaceRoot}/ortools/gen",
"${workspaceRoot}/dependencies/install/include",
],
"C_Cpp.default.cppStandard": "c++17",
"C_Cpp.default.cStandard": "c11",
"C_Cpp.default.defines": [
"USE_BOP",
"USE_GLOP",
"USE_CLP",
"USE_CBC"
],
"C_Cpp.clang_format_style": "Google",
"python.formatting.provider": "yapf",
"python.pythonPath": "python3"
}
}