diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..b084de1 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,23 @@ +{ + "configurations": [ + { + "name": "The Usual (clang)", + "includePath": [ + "${workspaceFolder}/8086", + "${workspaceFolder}/duffle", + "${workspaceFolder}/part_1" + ], + "defines": [ + "BUILD_DEBUG", + "UNICODE", + "_UNICODE", + "INTELLISENSE_DIRECTIVES" + ], + "windowsSdkVersion": "10.0.22621.0", + "compilerPath": "clang", + "cStandard": "c11", + "intelliSenseMode": "clang-x64" + } + ], + "version": 4 +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..f284563 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "C_Cpp.default.compilerPath": "C:\\Program Files\\LLVM\\bin\\clang.exe", +}