From 9abfee362aa0a3d346ff9122adde7ad7976af38b Mon Sep 17 00:00:00 2001 From: Jeff Myers Date: Fri, 16 Aug 2024 08:53:37 -0700 Subject: [PATCH] add missing properties file --- .vscode/c_cpp_properties.json | 65 +++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 .vscode/c_cpp_properties.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..8a0c0e5 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,65 @@ +{ + "configurations": [ + { + "name": "Win32", + "includePath": [ + "${workspaceFolder}/build/external/raylib-master/src/", + "${workspaceFolder}/include/**", + "${workspaceFolder}/src/**" + ], + "defines": [ + "_DEBUG", + "UNICODE", + "_UNICODE", + "GRAPHICS_API_OPENGL_33", + "PLATFORM_DESKTOP" + ], + "cStandard": "c99", + "cppStandard": "c++14", + "intelliSenseMode": "gcc-x64" + }, + { + "name": "Mac", + "includePath": [ + "${workspaceFolder}/build/external/raylib-master/src/", + "${workspaceFolder}/include/**", + "${workspaceFolder}/src/**" + ], + "defines": [ + "_DEBUG", + "UNICODE", + "_UNICODE", + "GRAPHICS_API_OPENGL_33", + "PLATFORM_DESKTOP" + ], + "macFrameworkPath": [ + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks" + ], + "compilerPath": "/usr/bin/clang", + "cStandard": "c11", + "cppStandard": "c++14", + "intelliSenseMode": "clang-x64" + }, + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/build/external/raylib-master/src/", + "${workspaceFolder}/include/**", + "${workspaceFolder}/src/**" + ], + "defines": [ + "_DEBUG", + "UNICODE", + "_UNICODE", + "GRAPHICS_API_OPENGL_33", + "PLATFORM_DESKTOP" + ], + "compilerPath": "/usr/bin/clang", + "cStandard": "c11", + "cppStandard": "c++14", + "intelliSenseMode": "clang-x64" + + } + ], + "version": 4 +}