I am planning on using ImGUI for a side-project on visual studio code. I have C++ properly installed such that I can run simple programs on a terminal/command prompt. Thus, I have the correct compiler path for the C/C++ configurations.
I was following this tutorial- https://www.youtube.com/watch?v=VRwhNKoxUtk - until 0:50, where properties was being accessed by clicking on a project. I could not find properties because my C++ and other files are under one file.
I have looked into the documentation from Microsoft Visual Studio Code and several other resources on creating workspace, but that alters my files and the compilation process does not work.
Is there a way of getting the files from https://github.com/ocornut/imgui - with the necessary header and .cpp files- and being able to program in ImGUI without working under a project, but instead a file?
I have tried putting the header files in the include path, but I am not sure if this will work. In that case, why do I need the .cpp files from the github repo? I assume the compiler path does not need to change
The new imports used are as follows
#include <glad/glad.h>
#include <GLFW/glfw3.h>
I am a beginner to visual studio code and C++, so any advice or help would please me.