Difference between revisions of "ALUT"

From HaskellWiki
Jump to navigation Jump to search
(Added section "Windows specific actions")
(→‎Windows specific actions: New link for env var setting)
Line 21: Line 21:
 
Set PATH=%LIBRARY_DIR%\freealut-1.1.0-bin\lib;%PATH%
 
Set PATH=%LIBRARY_DIR%\freealut-1.1.0-bin\lib;%PATH%
 
</pre>
 
</pre>
:If you need these variables more often, [http://support.microsoft.com/kb/310519 set them globally].
+
:If you need these variables more often, set them [http://www.computerhope.com/issues/ch000549.htm permanently].
   
 
== Additional software ==
 
== Additional software ==

Revision as of 15:46, 13 October 2015

This article is a stub. You can help by expanding it.

A binding for the OpenAL Utility Toolkit


Downloads

Windows specific actions

Before installing the Haskell package, you need to install the C++ package of ALUT:

  • download the ALUT zip file from the web archive.
  • unzip this to, for example, C:\Libraries
  • Set environment variables as follows:
Set LIBRARY_DIR=C:\Libraries
Set C_INCLUDE_PATH=%LIBRARY_DIR%\freealut-1.1.0-bin\include;%C_INCLUDE_PATH%
Set LIBRARY_PATH=%LIBRARY_DIR%\freealut-1.1.0-bin\lib;%LIBRARY_PATH%
Set PATH=%LIBRARY_DIR%\freealut-1.1.0-bin\lib;%PATH%
If you need these variables more often, set them permanently.

Additional software

  • StateVar: This package contains state variables, which are references in the IO monad, like IORefs or parts of the OpenGL state
  • OpenAL 3D sound software
  • OpenGL 3D graphics software