Skip to content

Instantly share code, notes, and snippets.

@iKlsR
Created June 25, 2012 18:21
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 iKlsR/2990331 to your computer and use it in GitHub Desktop.
Save iKlsR/2990331 to your computer and use it in GitHub Desktop.
build my ogl proj(mingw)
@echo off
echo building..
g++ -o core src/core.cpp -lfreeglut -lopengl32 -lglu32 -lglew32
copy C:\lib\freeglut\freeglut.dll
copy C:\lib\glew32\glew32.dll
core.exe
echo cleaning..
del freeglut.dll
del glew32.dll
del core.exe
echo application closed!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment