2014年7月27日 星期日

在MinGW下使用openGL(C/C++)

1.  進入http://www.opengl.org ,選擇Coding Resources -> GLUT and Utility Libraries -> About GLUT,點選Pre-compiled Win32 for Intel GLUT 3.7 DLLs for Windows 95 & NT下載壓縮檔。
2.      glut32.dll放入C:\Windows\System32資料夾
glut.h放入C:\MinGW\include\GL資料夾
glut32.lib放入程式碼所在的資料夾
3.      程式碼中要包含#include <windows.h>#include <GL/glut.h>
4.      假設程式檔名為test.c,在DOS編譯時,指令如下:
gcc –o test.exe test.c -mwindows glut32.lib -lopengl32 –lglu32

沒有留言:

張貼留言