6

I'm trying to get FreeGLUT working. For a reason I don't get, no binaries are distributed. Where can I download the .lib and the .dll files?

genpfault
  • 51,148
  • 11
  • 85
  • 139
bytecode77
  • 14,163
  • 30
  • 110
  • 141
  • It's a lot easier for library developers to provide the sources and allow you to compile it, than to provide precompiled binaries for every OS/compiler in existence. That being said, compiling it is fairly trivial. So perhaps tell us what it is you're using (which compiler. OS is Windows it seems) and where you're stuck. – Bart Sep 06 '12 at 12:41
  • I'm using Visual Studio 2012 and Windows. I tried compiling it but there were include errors (it think because of the ). Also types like `GLint` are used which can't be found. – bytecode77 Sep 06 '12 at 12:56
  • Please update the question to include the exact version of FreeGLUT you're compiling and the exact errors you get. I don't have VS2012 here at the moment, but I hardly think it's a version specific issue. – Bart Sep 06 '12 at 12:58

1 Answers1

8

You can download them at FreeGLut download page, in section Prepackaged Releases

Direct Link

Please note it's community-maintained. Library authors only do provide source code.

Citation from the page itself: If you have problems with these packages, please contact their maintainers - we of the freeglut team probably can't help.

If you provide the compilation/linking logs from your attempts with source distribution, we could find a reason for it not working as well.

Bartek Banachewicz
  • 38,596
  • 7
  • 91
  • 135