-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.code-workspace
110 lines (108 loc) · 2.35 KB
/
project.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"folders": [
{
"name": "Project: CMake Experiments",
"path": "."
},
{
"name": "CMake Variables",
"path": "./experiments/cmake_variables"
},
{
"name": "External Variables",
"path": "./experiments/external_variables"
},
{
"name": "Installing Targets",
"path": "./experiments/installing_targets"
},
{
"name": "Project Directive",
"path": "./experiments/project_directive"
},
{
"name": "Target Properties",
"path": "./experiments/target_properties"
}
],
"settings": {
/* ~~~~~~~~~~~~~~~~~~~~~~~
Vanilla Settings
~~~~~~~~~~~~~~~~~~~~~~~ */
"files.exclude": {
".vscode/ipch": true
},
/* ~~~~~~~~~~~~~~~~~~~~~~~~~
Extension Settings
~~~~~~~~~~~~~~~~~~~~~~~~~ */
"arduino.logLevel": "info",
"cmake.configureOnOpen": false,
"cmake.buildDirectory": "${workspaceFolder}/build/cmake",
"cmake.sourceDirectory": "${workspaceFolder}",
"cmake.debugConfig": {
"cwd": "${workspaceFolder}/build/cmake"
},
// "cmake.configureSettings": {
// "BUILD_GMOCK": "OFF"
// },
/* ~~~~~~~~~~~~~~~~~~~~~
Other Settings
~~~~~~~~~~~~~~~~~~~~~ */
// This setting is generated by the C_Cpp extension. As it can get really long, it's at the bottom
// of this file.
"files.associations": {
".clang-format": "yaml",
"xstring": "cpp",
"string": "cpp",
"ostream": "cpp",
"memory": "cpp",
"iosfwd": "cpp",
"xutility": "cpp",
"xmemory0": "cpp",
"utility": "cpp",
"algorithm": "cpp",
"cmath": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"exception": "cpp",
"functional": "cpp",
"initializer_list": "cpp",
"iomanip": "cpp",
"ios": "cpp",
"iostream": "cpp",
"istream": "cpp",
"iterator": "cpp",
"limits": "cpp",
"list": "cpp",
"map": "cpp",
"new": "cpp",
"set": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"typeinfo": "cpp",
"unordered_map": "cpp",
"vector": "cpp",
"xfacet": "cpp",
"xhash": "cpp",
"xiosbase": "cpp",
"xlocale": "cpp",
"xlocinfo": "cpp",
"xlocmon": "cpp",
"xlocnum": "cpp",
"xloctime": "cpp",
"xmemory": "cpp",
"xstddef": "cpp",
"xtr1common": "cpp",
"xtree": "cpp"
},
},
}