Skip to content

Instantly share code, notes, and snippets.

@Nooble
Created March 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nooble/327455d16458850f8944 to your computer and use it in GitHub Desktop.
Save Nooble/327455d16458850f8944 to your computer and use it in GitHub Desktop.
Microsoft Windows [Version 6.3.9600]
(c) 2013 Microsoft Corporation. All rights reserved.
C:\Programming\Engine>make
g++ .\Sources\Engine.cpp -o .\Binaries\Engine.exe -L.\Dependencies\Libraries\ -I
.\Dependencies\Headers -lglew32 -lglfw3 -lopengl32 -lglu32 -lgdi32 -static-libgc
c -static-libstdc++ -std=c++11 -m32
.\Sources\Engine.cpp:7:23: fatal error: GLEW\glew.h: No such file or directory
#include <GLEW\glew.h>
^
compilation terminated.
make: *** [Engine] Error 1
C:\Programming\Engine>g++ .\Sources\Engine.cpp -o .\Binaries\Engine.exe -L.\Depe
ndencies\Libraries\ -I.\Dependencies\Headers -lglew32 -lglfw3 -lopengl32 -lglu32
-lgdi32 -Wall -Wextra -pedantic -static-libgcc -static-libstdc++ -std=c++11 -m3
2
.\Sources\Engine.cpp:10:14: warning: unused parameter 'argc' [-Wunused-parameter
]
int main(int argc, char* argv[])
^
.\Sources\Engine.cpp:10:31: warning: unused parameter 'argv' [-Wunused-parameter
]
int main(int argc, char* argv[])
^
C:\Programming\Engine>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment