diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..5bd0bd4 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,76 @@ +{ + "configurations": [ + { + "name": "Mac", + "includePath": [ + "/usr/include", + "/usr/local/include", + "${workspaceRoot}" + ], + "defines": [], + "intelliSenseMode": "clang-x64", + "browse": { + "path": [ + "/usr/include", + "/usr/local/include", + "${workspaceRoot}" + ], + "limitSymbolsToIncludedHeaders": true, + "databaseFilename": "" + }, + "macFrameworkPath": [ + "/System/Library/Frameworks", + "/Library/Frameworks" + ] + }, + { + "name": "Linux", + "includePath": [ + "/usr/include", + "/usr/local/include", + "${workspaceRoot}" + ], + "defines": [], + "intelliSenseMode": "clang-x64", + "browse": { + "path": [ + "/usr/include", + "/usr/local/include", + "${workspaceRoot}" + ], + "limitSymbolsToIncludedHeaders": true, + "databaseFilename": "" + } + }, + { + "name": "Win32", + "includePath": [ + "${workspaceRoot}", + "C:/MinGW/lib/gcc/mingw32/6.3.0/include", + "C:/MinGW/include", + "C:/MinGW/lib/gcc/mingw32/6.3.0/include-fixed" + ], + "defines": [ + "_DEBUG", + "UNICODE", + "_UNICODE", + "__GNUC__=6", + "__cdecl=__attribute__((__cdecl__))" + ], + "intelliSenseMode": "clang-x64", + "browse": { + "path": [ + "${workspaceRoot}", + "C:/MinGW/lib/gcc/mingw32/6.3.0/include", + "C:/MinGW/lib/gcc/mingw32/6.3.0/include-fixed", + "C:/MinGW/include/*" + ], + "limitSymbolsToIncludedHeaders": true, + "databaseFilename": "" + }, + "cStandard": "c11", + "cppStandard": "c++17" + } + ], + "version": 3 +} \ No newline at end of file