Last active
April 26, 2020 15:20
-
-
Save h1romas4/8e348f55baa73615924ec2d17d641706 to your computer and use it in GitHub Desktop.
macOS 用の C/C++ vscode 定義
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", | |
"intelliSenseMode": "clang-x64", | |
"includePath": [ | |
"${workspaceRoot}/**" | |
], | |
"macFrameworkPath": [ | |
"/System/Library/Frameworks", | |
"/Library/Frameworks" | |
], | |
"compilerPath": "/usr/bin/clang", | |
"cStandard": "c11", | |
"cppStandard": "c++17" | |
} | |
], | |
"version": 4 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment