Я пытаюсь включить библиотеку расширений SDL_image в SDL.framework в моем проекте, но IntelliSense VScode продолжает подчеркивать мой #include<SDL_image.h>
линиями ошибок. Он выдает следующую ошибку:
cannot open source file "SDL2/SDL.h" (dependency of "SDL_image.h")
Я успешно смог отредактировать c_cpp_properties. json includePath, чтобы IntelliSense распознал инфраструктуру SDL, но при попытке сделать то же самое с SLD_image это не удалось.
Это мои c_cpp_properties. json file:
{
"configurations": [
{
"name": "Mac",
"includePath": [
"/Library/Frameworks/SDL2_image.framework/Headers",
"/Library/Frameworks/SDL2.framework/Headers",
"${workspaceFolder}/**"
],
"defines": [],
"macFrameworkPath": [
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}