-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOS.code-workspace
91 lines (91 loc) · 2.38 KB
/
OS.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
{
"folders": [
{
"path": ".",
"name": "OS Project"
}
],
"settings": {
"files.associations": {
"*.h": "cpp",
"*.cpp": "cpp",
"*.asm": "nasm",
"*.inc": "nasm"
},
"editor.rulers": [
80,
100
],
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 4,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"C_Cpp.default.includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/kernel/**"
],
"C_Cpp.default.defines": [
"__kernel__",
"__x86__"
],
"C_Cpp.default.compilerPath": "/usr/bin/clang++",
"C_Cpp.default.intelliSenseMode": "clang-x86",
"C_Cpp.default.cppStandard": "c++17",
"search.exclude": {
"**/build": true,
"**/*.o": true,
"**/*.bin": true,
"**/*.iso": true
},
"files.watcherExclude": {
"**/build/**": true
}
},
"extensions": {
"recommendations": [
"ms-vscode.cpptools",
"twxs.cmake",
"ms-vscode.cmake-tools",
"13xforever.language-x86-64-assembly",
"jeff-hykin.better-cpp-syntax",
"vadimcn.vscode-lldb",
"eamodio.gitlens"
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Build All",
"type": "shell",
"command": "./build.sh",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Clean",
"type": "shell",
"command": "./build.sh clean"
},
{
"label": "Run in QEMU",
"type": "shell",
"command": "./scripts/run.sh",
"dependsOn": ["Build All"]
},
{
"label": "Debug in QEMU",
"type": "shell",
"command": "./scripts/run.sh debug",
"dependsOn": ["Build All"]
}
]
},
"launch": {
"configurations": [],
"compounds": []
}
}