From: Martin O. <li...@mi...> - 2004-09-02 18:53:42
|
Hi, I'm having difficult understand how to use GLUT from the dev-cpp platform. My first try was to download GLUT for win32, but I noticed that dev-cpp could not use the MSVC .lib file. I googled for awhile and then I learned about reimp.exe and I used to to get a proper .a file for dev-cpp. However, when I was about to copy the new .a file into the dev-cpp lib dir I noticed that it already had a libglut.a and also an existing copy of libglut32.a. I thought, strange, and so I reported this as a bug because there was no .h file only a file in the lib dir. Then I googled some more and I found a reference to freeglut which I thought was a great idea. Hence I arrived later at the freeGLUT homepage, here: http://www.nigels.com/glt/devpak/ Now it says "No longer needed, GLUT is now bundled with Dev-C++", but what does that mean? I'm really confused, if GLUT is indeed bundled with dev-cpp maybe one could add a GLUT project template right besides the OpenGL-project thing? That would simply ALOT for confused people like me! --- Finally, what is the best way for me to proceed? Is there a preinstalled GLUT library+header set somewhere on my computer (im using the latest dev-cpp as of today). Where can I find it, how can I use it? regards, martin |
From: Scott S. <age...@co...> - 2004-09-02 20:29:09
|
I too couldn't find the header. So I simply used the header that GLUT comes with when you download it. --Scott Simontis-- Martin Olsson wrote: > Hi, > > > I'm having difficult understand how to use GLUT from the dev-cpp > platform. My first try was to download GLUT for win32, but I noticed > that dev-cpp could not use the MSVC .lib file. I googled for awhile > and then I learned about reimp.exe and I used to to get a proper .a > file for dev-cpp. However, when I was about to copy the new .a file > into the dev-cpp lib dir I noticed that it already had a libglut.a and > also an existing copy of libglut32.a. I thought, strange, and so I > reported this as a bug because there was no .h file only a file in the > lib dir. Then I googled some more and I found a reference to freeglut > which I thought was a great idea. Hence I arrived later at the > freeGLUT homepage, here: > > http://www.nigels.com/glt/devpak/ > > Now it says "No longer needed, GLUT is now bundled with Dev-C++", but > what does that mean? I'm really confused, if GLUT is indeed bundled > with dev-cpp maybe one could add a GLUT project template right besides > the OpenGL-project thing? That would simply ALOT for confused people > like me! > > --- > > Finally, what is the best way for me to proceed? Is there a > preinstalled GLUT library+header set somewhere on my computer (im > using the latest dev-cpp as of today). Where can I find it, how can I > use it? > > > regards, > martin > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm > https://lists.sourceforge.net/lists/listinfo/dev-cpp-users > |
From: Martin O. <li...@mi...> - 2004-09-03 07:21:48
|
The problem with that is that the latest GLUT (3.7.6) has a header file that works only with non-free products. Additionally I use -Wall and a few other such flags and in total there is about 1 page full of warnings. There is however only only fatal error in the latest glut.h (something about redefining some *CHAR* type. In general alot of .h files seem to give me strange errors in dev-cpp but they work out fine in MSVC. This makes be feel that dev-cpp is a bad product, and I would really like to change that because I prefer free software. regards, martin Scott Simontis wrote: > I too couldn't find the header. So I simply used the header that GLUT > comes with when you download it. > > --Scott Simontis-- > > > > Martin Olsson wrote: > >> Hi, >> >> >> I'm having difficult understand how to use GLUT from the dev-cpp >> platform. My first try was to download GLUT for win32, but I noticed >> that dev-cpp could not use the MSVC .lib file. I googled for awhile >> and then I learned about reimp.exe and I used to to get a proper .a >> file for dev-cpp. However, when I was about to copy the new .a file >> into the dev-cpp lib dir I noticed that it already had a libglut.a and >> also an existing copy of libglut32.a. I thought, strange, and so I >> reported this as a bug because there was no .h file only a file in the >> lib dir. Then I googled some more and I found a reference to freeglut >> which I thought was a great idea. Hence I arrived later at the >> freeGLUT homepage, here: >> >> http://www.nigels.com/glt/devpak/ >> >> Now it says "No longer needed, GLUT is now bundled with Dev-C++", but >> what does that mean? I'm really confused, if GLUT is indeed bundled >> with dev-cpp maybe one could add a GLUT project template right besides >> the OpenGL-project thing? That would simply ALOT for confused people >> like me! >> >> --- >> >> Finally, what is the best way for me to proceed? Is there a >> preinstalled GLUT library+header set somewhere on my computer (im >> using the latest dev-cpp as of today). Where can I find it, how can I >> use it? >> >> >> regards, >> martin >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by BEA Weblogic Workshop >> FREE Java Enterprise J2EE developer tools! >> Get your free copy of BEA WebLogic Workshop 8.1 today. >> http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >> _______________________________________________ >> Dev-cpp-users mailing list >> Dev...@li... >> TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm >> https://lists.sourceforge.net/lists/listinfo/dev-cpp-users >> > |
From: Gustavo L. <gl...@qa...> - 2004-09-03 13:12:29
|
There is a free version of glut: freeglut. It cames in a devpack so you can easily install and use it. You can download it from: (http://devpaks.org) |