diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-10-11 11:58:11 +0200 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-10-11 11:58:11 +0200 |
commit | 552f308e9e0a745852ca11064b6b31e16b115917 (patch) | |
tree | a88d109962a7de5594f3781fe1e388879936218c /.vscode/c_cpp_properties.json | |
parent | Control updates (diff) | |
parent | Merge pull request #760 from Sergeanur/VC/TextFinish (diff) | |
download | re3-552f308e9e0a745852ca11064b6b31e16b115917.tar re3-552f308e9e0a745852ca11064b6b31e16b115917.tar.gz re3-552f308e9e0a745852ca11064b6b31e16b115917.tar.bz2 re3-552f308e9e0a745852ca11064b6b31e16b115917.tar.lz re3-552f308e9e0a745852ca11064b6b31e16b115917.tar.xz re3-552f308e9e0a745852ca11064b6b31e16b115917.tar.zst re3-552f308e9e0a745852ca11064b6b31e16b115917.zip |
Diffstat (limited to '.vscode/c_cpp_properties.json')
-rw-r--r-- | .vscode/c_cpp_properties.json | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 00000000..327d8cc7 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,32 @@ +{ + "configurations": [ + { + "name": "Mac", + "includePath": ["${default}"], + "defines": [], + "macFrameworkPath": [ + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks" + ], + "compilerPath": "/opt/local/bin/clang", + "compilerArgs": ["-g"], + "cStandard": "gnu11", + "cppStandard": "gnu++14", + "browse": { + "path": [ + "/opt/local/include", + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include" + ] + } + }, + { + "name": "Linux", + "includePath": ["${default}"], + "defines": ["XDG_ROOT"], + "compilerPath": "/usr/bin/gcc", + "compilerArgs": ["-ggdb"], + "cStandard": "gnu11", + "cppStandard": "gnu++14" + } + ], + "version": 4 +} |