Hi, I am new using OPENFHE and I am having problems when running examples in OpenFHE. I am trying to run: /home/usuario/prueba/openfhe-development/src/binfhe/examples/pke/boolean-pke.cpp but I find the following error: “binfhecontext.h: No such file or directory”, which actually is in: /usr/local/include/openfhe/binfhe/binfhecontext.h.
I tried adding the paths in settings.json: {
“files.watcherExclude”: {
“/build/”: true
},
“C_Cpp.default.includePath”: [
“/usr/local/include/openfhe/core”,
“/usr/local/include/openfhe/pke”,
“/usr/local/include/openfhe/cereal”,
“/usr/local/include/openfhe/binfhe”,
“${workspaceFolder}/**”
]
}
and also in /home/usuario/prueba/openfhe-development/.vscode/c_cpp_properties.json: {
“configurations”: [
{
“name”: “Linux”,
“includePath”: [
“{workspaceFolder}/**",
"/usr/local/include/openfhe",
"/usr/local/include/openfhe/core",
"/usr/local/include/openfhe/pke",
"/usr/local/include/openfhe/cereal",
"/usr/local/include/openfhe/binfhe",
"{workspaceFolder}/**”
],
“defines”: ,
“compilerPath”: “/usr/bin/gcc”,
“cStandard”: “c17”,
“cppStandard”: “gnu++14”,
“intelliSenseMode”: “linux-gcc-x64”
}
],
“version”: 4
}
But I still got the same error. How can I fix it?