Last active
March 7, 2018 15:50
-
-
Save damienstanton/98d46b8627634f85a22bc7c91ce3651d to your computer and use it in GitHub Desktop.
C/C++/ObjC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "configurations": [ | |
| { | |
| "name": "Mac", | |
| "C_Cpp.intelliSenseEngine": "Default", | |
| "includePath": [ | |
| "${workspaceRoot}/include", | |
| "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/include" | |
| ], | |
| "intelliSenseMode": "clang-x64", | |
| "browse": { | |
| "path": [ | |
| "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1", | |
| "/usr/local/include", | |
| "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/include", | |
| "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include", | |
| "/usr/include", | |
| "${workspaceRoot}" | |
| ] | |
| }, | |
| "macFrameworkPath": [ | |
| "/System/Library/Frameworks", | |
| "/Library/Frameworks" | |
| ] | |
| } | |
| ], | |
| "version": 3 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // add to .vscode/settings.json if working in an Obj-C project | |
| { | |
| "files.associations": { | |
| "*.h": "objective-cpp", | |
| "*.m": "objective-cpp" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/include/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment