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}/**",
2023-04-04 16:59:11 -04:00
"/Applications/root_v6.28.02/include/**"
2023-04-04 14:47:44 -04:00
],
"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",
2023-04-04 16:59:11 -04:00
"intelliSenseMode": "macos-clang-arm64"
2023-04-04 14:47:44 -04:00
},
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
}