SOLARIS_Analysis/.vscode/c_cpp_properties.json

33 lines
1.0 KiB
JSON
Raw Normal View History

2023-03-17 15:16:57 -04:00
{
"configurations": [
2023-04-04 14:47:44 -04:00
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**",
"/Applications/root-6.28.00/include/**"
],
"defines": [],
"macFrameworkPath": [
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"compilerPath": "/usr/bin/g++",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "macos-gcc-arm64"
},
2023-03-17 15:16:57 -04:00
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include/x86_64-linux-gnu/qt6/**",
"/opt/root/include/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}