I usually use Visual Studio for c/c++ programming, however I want to give vscode a shot and I don't know how to include libraries using Makefile. (The tutorials on youtube didn't work) I tried using C/C++ Configurations (IntelliSense Configurations) but doesn't work.
I want to include GLFW and GLAD.
Project Library Paths: C:\Users\Administrator\Documents\Game Project\include\GLAD and C:\Users\Administrator\Documents\Game Project\include\GLFW
The Makefile:
all:
g++ -g --std=c++20 -I../include -L../lib ../src/*.cpp ../src/glad.c -lglfw3dll -o main
(Got this from the youtube tutorial)
It always gives me the "No such file or directory" error.
Please help