I’m trying to code using vs code
as IDE.
However, Unreal engine modules are not being found.
262717-
I’ve looked up c_cpp_properties.json
file that describes project’s configurations.
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
includePath should be variable?
My doubt is: is really only that? And what path should I point to to vscode be able to find unreal modules?
My OS is Ubuntu 16.04
Edit:
According to timsev7ns comment, msbuild was missing. I installed it from [here](https://github.com/Microsoft/msbuild/blob/master/documentation/wiki/Building-Testing-and-Debugging-on-.Net-Core-MSBuild.md), but this issue remains. The question now is: how can I link
vccodeagainst
msbuild`?