OpenGL
OpenGL copied to clipboard
Win-Premake.bat - Error: cannot open OpenGL-Core/vendor/glfw: No such file or directory
Any idea why it doesn't work? I changed the capital letters of "GLFW" in base premake5.lua to lowercase and still didn't work.
That is because you don't have the submodules cloned. Open a command line in the project root directory and type in these two lines one after another:
git submodule init
git submodule update
Maybe you forget --recursive when you clone.