refactor: restructure the user space stuff.
[lunaix-os.git] / lunaix-os / .vscode / c_cpp_properties.json
1 {
2     "configurations": [
3         {
4             "name": "OS-DEV",
5             "includePath": [
6                 "${workspaceFolder}/includes",
7                 "${workspaceFolder}/includes/usr",
8                 "${workspaceFolder}/usr/includes"
9             ],
10             "compilerArgs": [
11                 "-ffreestanding",
12                 "-D__ARCH_IA32",
13                 "-D__LUNAIXOS_DEBUG__",
14                 "-include flags.h"
15             ],
16             "defines": [],
17             "compilerPath": "${HOME}/opt/cross-compiler/bin/i686-elf-gcc",
18             "cStandard": "gnu99",
19             "intelliSenseMode": "gcc-x86"
20         }
21     ],
22     "version": 4
23 }