I am trying to move to VSCode from sublime text and I was wondering how to configure VSCode to work properly with SCIP.
my c_cpp_properties.json file looks like this:
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**",
"/Library/scip7/scip/",
"/Library/scip7/scip/src"
],
"defines": [],
"macFrameworkPath": [],
"compilerPath": "/usr/local/bin/gcc-9",
"cStandard": "c11",
"cppStandard": "gnu++14",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
I am able to get code completion working but I have having these errors in the Problems tab of the VScode terminal
#include errors detected. Please update your includePath. Squiggles are disabled for this translation unit (/Users/morpheus/main.cpp)
cannot open source file "scip/config.h" (dependency of "/Users/morpheus/main.cpp")
This doesn't severely affect the development but I would like to know if there is a simple fix.