Hello. There is a project in Visual C ++. How can glut libraries be attached to a project, so that when compiling and running this project on another computer, there is no need to perform any manipulations with these libraries?
1 answer
in windows
#pragma comment(lib, "Glaux.lib")
- I have two libraries: glut32.dll and glut32.lib. What to do dll? - rabbitinspace
- dll put in c: \ windows \ system32 lib or in the project directory or in the compiler library directory - perfect
- I threw it, but on another computer I ask glut32.dll, but I need it to run without problems - rabbitinspace
- then throw in the directory with your .exe file - perfect
- thanks, helped - rabbitinspace
|