

- #Como instalar matlab 2012 zip file#
- #Como instalar matlab 2012 archive#
- #Como instalar matlab 2012 windows 8.1#
#Como instalar matlab 2012 archive#
Copy the “lib\” and “include\” folders from this zip archive to that location. Create a folder on your PC which is readable by all users, for example “C:\Program Files\Common Files\MSVC\freeglut\” on a typical Windows system. I copied some important parts of that package here: Same installation instructions aplies to freeglut files with the header files in the GL folder, lib in the lib folder, and dll in the System32 folder.įor an easy and appropriate way of doing this, first download a prepackaged release of freeglut from here. Now right click on "Additional Dependence" found on Right panel and click Edit.Select 'All Configuration' from Configuration dropdown menu on top left corner Under Visual C++, select Empty Project(or your already existing project).Place glut32.lib to C:\Program Files\Microsoft Visual Studio 12\VC\lib\ If you do not find VC and following directories. Place glut.h C:\Program Files\Microsoft Visual Studio 12\VC\include\GL\ (NOTE: 12 here refers to your VS version it may be 8 or 10) If you have a 32 bits operating system, place glut32.dll to C:\Windows\System32\, if your operating system is 64 bits, place it to 'C:\Windows\SysWOW64\' (to your system directory)
#Como instalar matlab 2012 zip file#
Not free glutįirst download this 118 KB GLUT package from HereĮxtract the downloaded ZIP file and make sure you find the following To actually run it, you also need to copy the freeglut.dll files into your project folder For Additional Dependencies add opengl32.lib (you would assume that this would be linked automatically just by adding the include GL/gl.h to your project, but for some reason this doesn't seem to be the case)Īt this stage your project should compile OK. Still in project properties, expand the linker menu, and open the input tab. (Almost) Final step is to ensure that the opengl lib file is actually linked during compilation.

There should be a tab for VC++ Directories, here you should add the appropriate include and lib folders, e.g.: C:\dev\freeglut\include and C:\dev\freeglut\lib put the freeglut folder somewhere else, e.g. Instead (apologies for any inconsistencies, I'm basing these instructions on VS2010). Installation instructions usually suggest moving these files into the visual studio folder and the Windows system folder: It is best to avoid doing this as it makes your project less portable, and makes it much more difficult if you ever need to change which version of the library you are using (old projects might suddenly stop working, etc.) lib: contains library files for compilation/linking include: the header files for compilation bin folder: this contains the dll files for runtime When you download these you'll find that the Freeglut folder has three subfolders:
#Como instalar matlab 2012 windows 8.1#
"Martin Payne's Windows binaries" is posted at above link and works on Windows 8.1 with Visual Studio 2013 at the time of this writing. If you don't see the "lib" folder, it's because you didn't download the pre-packaged set. You'll find pre-packaged sets of files from here: You won't have to change your code at all, and a few additional features become available. GLUT is very dated now and not actively supported - so you should certainly be using Freeglut instead. OpenGL should be present already - it will probably be Freeglut / GLUT that is missing.
