Skip to content

Commit 25f7e62

Browse files
committed
Add .vscode
1 parent 903998a commit 25f7e62

File tree

2 files changed

+134
-0
lines changed

2 files changed

+134
-0
lines changed

.vscode/c_cpp_properties.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "tests",
5+
"includePath": [
6+
"${default}"
7+
],
8+
"defines": [
9+
"_DEBUG",
10+
"UNICODE",
11+
"_UNICODE"
12+
],
13+
"cStandard": "c17",
14+
"cppStandard": "c++17",
15+
"compileCommands": "${workspaceFolder}/tests/build/compile_commands.json"
16+
}
17+
],
18+
"version": 4
19+
}

.vscode/settings.json

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"editor.defaultFormatter": "xaver.clang-format",
4+
"files.associations": {
5+
"*.c": "c",
6+
"*.cpp": "cpp",
7+
"*.h": "c",
8+
"*.hpp": "cpp",
9+
"*.ipp": "cpp",
10+
"*.xbm": "cpp",
11+
"__bit_reference": "cpp",
12+
"__bits": "cpp",
13+
"__config": "cpp",
14+
"__debug": "cpp",
15+
"__errc": "cpp",
16+
"__functional_base": "cpp",
17+
"__hash_table": "cpp",
18+
"__locale": "cpp",
19+
"__mutex_base": "cpp",
20+
"__node_handle": "cpp",
21+
"__nullptr": "cpp",
22+
"__split_buffer": "cpp",
23+
"__string": "cpp",
24+
"__threading_support": "cpp",
25+
"__tree": "cpp",
26+
"__tuple": "cpp",
27+
"__verbose_abort": "cpp",
28+
"algorithm": "cpp",
29+
"any": "cpp",
30+
"array": "cpp",
31+
"atomic": "cpp",
32+
"bit": "cpp",
33+
"bitset": "cpp",
34+
"cctype": "cpp",
35+
"cfenv": "cpp",
36+
"charconv": "cpp",
37+
"chrono": "cpp",
38+
"cinttypes": "cpp",
39+
"clocale": "cpp",
40+
"cmath": "cpp",
41+
"codecvt": "cpp",
42+
"compare": "cpp",
43+
"complex": "cpp",
44+
"concepts": "cpp",
45+
"condition_variable": "cpp",
46+
"coroutine": "cpp",
47+
"csignal": "cpp",
48+
"cstdarg": "cpp",
49+
"cstddef": "cpp",
50+
"cstdint": "cpp",
51+
"cstdio": "cpp",
52+
"cstdlib": "cpp",
53+
"cstring": "cpp",
54+
"ctime": "cpp",
55+
"cwchar": "cpp",
56+
"cwctype": "cpp",
57+
"deque": "cpp",
58+
"exception": "cpp",
59+
"execution": "cpp",
60+
"filesystem": "cpp",
61+
"format": "cpp",
62+
"forward_list": "cpp",
63+
"fstream": "cpp",
64+
"functional": "cpp",
65+
"future": "cpp",
66+
"initializer_list": "cpp",
67+
"iomanip": "cpp",
68+
"ios": "cpp",
69+
"iosfwd": "cpp",
70+
"iostream": "cpp",
71+
"istream": "cpp",
72+
"iterator": "cpp",
73+
"limits": "cpp",
74+
"list": "cpp",
75+
"locale": "cpp",
76+
"map": "cpp",
77+
"memory_resource": "cpp",
78+
"memory": "cpp",
79+
"mutex": "cpp",
80+
"new": "cpp",
81+
"numbers": "cpp",
82+
"numeric": "cpp",
83+
"optional": "cpp",
84+
"ostream": "cpp",
85+
"print": "cpp",
86+
"queue": "cpp",
87+
"random": "cpp",
88+
"ratio": "cpp",
89+
"regex": "cpp",
90+
"semaphore": "cpp",
91+
"set": "cpp",
92+
"span": "cpp",
93+
"sstream": "cpp",
94+
"stack": "cpp",
95+
"stdexcept": "cpp",
96+
"stop_token": "cpp",
97+
"streambuf": "cpp",
98+
"string_view": "cpp",
99+
"string": "cpp",
100+
"strstream": "cpp",
101+
"system_error": "cpp",
102+
"text_encoding": "cpp",
103+
"thread": "cpp",
104+
"tuple": "cpp",
105+
"type_traits": "cpp",
106+
"typeindex": "cpp",
107+
"typeinfo": "cpp",
108+
"unordered_map": "cpp",
109+
"unordered_set": "cpp",
110+
"utility": "cpp",
111+
"variant": "cpp",
112+
"vector": "cpp",
113+
"version": "cpp",
114+
}
115+
}

0 commit comments

Comments
 (0)