Я совершенно новичок в программировании.Во время компиляции visual studio я показывал это в терминале, просто создавая программу hello world.фатальная ошибка: glew нет таких файлов или каталог найден, компиляция прекращена "Пожалуйста, помогите мне с этим.
mn.cpp
#include <iostream>
#include<glew.h>
#include<glut.h>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
cout<<" fatal error no such file or directory compilation termited";
return 0;
}
c_cpp_properties.json files
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**",
"/resources/glew/GL/*",
"/resources/glut/glut/*"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "C:\\MinGW\\bin\\gcc.exe",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}