-
Notifications
You must be signed in to change notification settings - Fork 1
/
c_cpp_properties.json
34 lines (34 loc) · 1.02 KB
/
c_cpp_properties.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"env": {
"baseDir": "${workspaceFolder}/VeriPatch",
"ffMallocDir": "${baseDir}/FFMalloc",
"ubstarDir": "${baseDir}/UBStar",
"passDir": "${baseDir}/InstrumentPass",
"krml_home": "/opt/everest/karamel"
},
"configurations": [
{
"name": "VeriPatch",
"intelliSenseMode": "clang-x64",
"includePath": [
"${ffMallocDir}/src/**",
"${ubstarDir}/code/**",
"${ubstarDir}/dist/**",
"${passDir}/include/**",
"${krml_home}/include/**",
"${krml_home}/krmllib/dist/generic/**",
"/usr/include/llvm-15",
"/usr/lib/llvm-15/include"
],
"cStandard": "c11",
"cppStandard": "c++20",
"compileCommands": "${passDir}/compile_commands.json",
"browse": {
"path": [
"${workspaceFolder}"
]
}
}
],
"version": 4
}