-
Notifications
You must be signed in to change notification settings - Fork 1
/
hyped.code-workspace
executable file
·64 lines (64 loc) · 1.62 KB
/
hyped.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.rulers": [
100
],
"editor.renderWhitespace": "selection",
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
"files.eol": "\n",
"files.autoSave": "onWindowChange",
"files.exclude": {
"**/.cpplint-cache": true,
".ccls-cache": true,
"bin": true,
"**/googletest/build/*": true,
"**/*.a": true,
"**/testrunner*": true,
"hyped": true,
"hyped.exe": true,
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.formatOnSave": true,
"C_Cpp.clang_format_style": "file",
"C_Cpp.default.includePath": [
"${workspaceRoot}/src",
"${workspaceRoot}/build/lib/gtest/src/googletest/googletest/include",
"${workspaceRoot}/build/lib/eigen/src/eigen",
"${workspaceRoot}/build/lib/rapidjson/src/rapidjson/include",
"${workspaceRoot}/test/src"
],
"C_Cpp.default.defines": [],
"editor.detectIndentation": false,
"C_Cpp.default.cppStandard": "c++20",
"files.associations": {
"alignedvector3": "cpp",
"fft": "cpp",
"nonlinearoptimization": "cpp",
"openglsupport": "cpp",
"array": "cpp",
"*.tcc": "cpp",
"bitset": "cpp",
"string": "cpp",
"vector": "cpp",
"string_view": "cpp",
"functional": "cpp",
"iomanip": "cpp",
"istream": "cpp",
"limits": "cpp",
"ostream": "cpp",
"ratio": "cpp",
"sstream": "cpp",
"stop_token": "cpp",
"streambuf": "cpp",
"regex": "cpp",
"tuple": "cpp"
}
}
}