diff options
| author | Ray <[email protected]> | 2018-08-30 18:41:21 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-08-30 18:41:21 +0200 |
| commit | 57dfe55759ec08247d67f73a3014ba6c85d2e339 (patch) | |
| tree | 24dd685a1f4f1020b076028cf1f0b411527838ac /projects/VSCode/.vscode/c_cpp_properties.json | |
| parent | adf08c88ea4b065a36bf76143a6b42cfce1601de (diff) | |
| parent | f97bb085bf71bbaa7aed223e9243029979ba4948 (diff) | |
| download | raylib-57dfe55759ec08247d67f73a3014ba6c85d2e339.tar.gz raylib-57dfe55759ec08247d67f73a3014ba6c85d2e339.zip | |
Merge pull request #637 from MurrayIRC/master
Updated VSCode project to support OSX building / debugging.
Diffstat (limited to 'projects/VSCode/.vscode/c_cpp_properties.json')
| -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 +} |
