I cannot make IntelliSense recognize the Mac OS frameworks...
My application makes use of the ApplicationServices framework and IntelliSense cannot find AE/AE.h header for example. The only way I found to make it work was creating a symlink to the Headers directory from the framework. I'm using VS Code 1.22.2 and the C++ extension 0.16.1
Here's my properties:
{
"name": "Mac",
"includePath": [
"${workspaceFolder}",
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1",
"/usr/local/include",
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.1.0/include",
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include",
"/usr/include",
"${workspaceFolder}/import/include"
],
"defines": [],
"intelliSenseMode": "clang-x64",
"browse": {
"path": [
"${workspaceFolder}",
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1",
"/usr/local/include",
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.1.0/include",
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include",
"/usr/include"
],
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": ""
},
"macFrameworkPath": [
"/System/Library/Frameworks",
"/Library/Frameworks"
],
"compilerPath": "/usr/bin/clang++",
"cStandard": "c11",
"cppStandard": "c++17"
}
I cannot make IntelliSense recognize the Mac OS frameworks...
My application makes use of the ApplicationServices framework and IntelliSense cannot find
AE/AE.hheader for example. The only way I found to make it work was creating a symlink to the Headers directory from the framework. I'm using VS Code 1.22.2 and the C++ extension 0.16.1Here's my properties: