-
Notifications
You must be signed in to change notification settings - Fork 2
/
twr-wasm-gcc.code-workspace
68 lines (65 loc) · 1.28 KB
/
twr-wasm-gcc.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.tabSize": 3,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"git.openRepositoryInParentFolders": "prompt",
"files.associations": {
"stdbool.h": "c",
"io.h": "c",
"stdio.h": "c",
"assert.h": "c",
"crtdefs.h": "c",
"corecrt.h": "c",
"stdint.h": "c",
"stdarg.h": "c",
"stddef.h": "c",
"twr-io.h": "c",
"twr-crt.h": "c",
"twr-bigint.h": "c",
"twr-wasm.h": "c",
"array": "c",
"string_view": "c",
"format": "c",
"initializer_list": "c",
"span": "c",
"twr-draw2d.h": "c",
"twr-float-util.h": "c"
},
"C_Cpp.default.compilerPath": "C:/msys64/ucrt64/bin/gcc.exe",
"C_Cpp.default.cStandard": "c17",
"C_Cpp.default.intelliSenseMode": "windows-gcc-x64",
"C_Cpp.default.includePath": ["source/twr-bigint", "examples/twr-cpp"],
"C_Cpp.default.defines": [
"_DEBUG",
],
"C_Cpp.files.exclude": {
},
"files.exclude": {
},
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "make UNIT TEST",
"command": "mingw32-make",
"args": [
],
"options": {
"cwd": "${workspaceFolder}/source/unit-test"
},
"problemMatcher": [
"$gcc"
],
"group": "build",
},
]
}
}