Include path issue C++ vscode

Viewed 53

I have a test program to set up my vscode to compile and run C++ and openGL. I have glfw3.h set up in the "projects/packages/include" folder and have added the folder to the include path and am running code like this

#include <iostream>
#include <string>
#include "glfw.h"

int main {/*hello world function*/ return 0}

I have tried to implement this with angular brackets and without the ".h" but I'm having no luck

0 Answers
Related