Hi, I have created a very simple project based on the hello_world sample.
In my project there are some .cpp files lik the main.cpp and another one called datamodel.cpp.
Everything seems to build just fine but the vscode intellisense is throwing the following errors and does not index the .cpp files properly:
[{
"resource": "/home/jmartin/gozer/src/main.cpp",
"owner": "C/C++6",
"code": "1027",
"severity": 8,
"message": "command-line error: language modes specified are incompatible",
"source": "C/C++",
"startLineNumber": 1,
"startColumn": 1,
"endLineNumber": 1,
"endColumn": 2
}]
My settings.json file has just the defaults:
The "C/C++: Log Diagonstics" palette command throws the following:
Is there anything extra I need to set up to have the c++ files properly parsed by the intellisense in an SDK connect project?
Regards,
Javier.