↧
Answer by amtw123 for How to run and compile C++ GLFW code using Atom with...
So I've got it working so what I was doing was just compiling the program without it linking the GLFW libraries. Because I was using MinGW as my C++ compiler in atom I needed to add this to the...
View ArticleHow to run and compile C++ GLFW code using Atom with the package gpp-compiler
So I want to use Atom as my IDE in my journey in learning GLFW. This is my code#include <GLFW\glfw3.h>int main(void){ GLFWwindow* window; /* Initialize the library */ if (!glfwInit()) return -1;...
View Article