diff options
| author | Murray Campbell <MurrayIRC@gmail.com> | 2018-08-30 09:46:51 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-30 09:46:51 -0500 |
| commit | be29c13bfd7e654153c02c4fa7e5ce3c96f556e2 (patch) | |
| tree | 50a22d448fb7df273757fa2c512acab8032ccf1a | |
| parent | 04c45372839132d40c1b007e1f2b25420b57ad55 (diff) | |
| parent | 5eded83d68f35f55ed4ff5b9a98899d3f1ffe85b (diff) | |
| download | raylib-be29c13bfd7e654153c02c4fa7e5ce3c96f556e2.tar.gz raylib-be29c13bfd7e654153c02c4fa7e5ce3c96f556e2.zip | |
Merge pull request #1 from MurrayIRC/patch-1
Added a configuration for OSX
| -rw-r--r-- | projects/VSCode/.vscode/c_cpp_properties.json | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/projects/VSCode/.vscode/c_cpp_properties.json b/projects/VSCode/.vscode/c_cpp_properties.json index 10494f67..81efa19e 100644 --- a/projects/VSCode/.vscode/c_cpp_properties.json +++ b/projects/VSCode/.vscode/c_cpp_properties.json @@ -17,7 +17,28 @@ "cStandard": "c11", "cppStandard": "c++14", "intelliSenseMode": "clang-x64" + }, + { + "name": "Mac", + "includePath": [ + "<path_to_raylib>/src/**", + "${workspaceFolder}/**" + ], + "defines": [ + "_DEBUG", + "UNICODE", + "_UNICODE", + "GRAPHICS_API_OPENGL_33", + "PLATFORM_DESKTOP" + ], + "macFrameworkPath": [ + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks" + ], + "compilerPath": "/usr/bin/clang", + "cStandard": "c11", + "cppStandard": "c++14", + "intelliSenseMode": "clang-x64" } ], "version": 4 -}
\ No newline at end of file +} |
