Difference between revisions of "ALUT"
From HaskellWiki
(→Windows specific actions: Added instructions, using the freealut source code) |
(→Windows specific actions) |
||
Line 44: | Line 44: | ||
* Press "Configure" | * Press "Configure" | ||
* Press "Generate"; this will generate a makefile | * Press "Generate"; this will generate a makefile | ||
+ | * Edit freealut\include\AL\alut.h: | ||
+ | : Change line 34: | ||
+ | : <code> #define ALUT_APIENTRY __cdecl</code> | ||
+ | : to: | ||
+ | : <code> #define ALUT_APIENTRY __stdcall</code> | ||
+ | |||
* In the shell, go to the directory where you want the compile result, for example <code>C:\Temp\freealut\build</code> | * In the shell, go to the directory where you want the compile result, for example <code>C:\Temp\freealut\build</code> | ||
* Start the MSYS shell: | * Start the MSYS shell: | ||
: <code>sh</code> | : <code>sh</code> | ||
* Run the make utility: | * Run the make utility: | ||
− | : <code> | + | : <code>mingw32-make install</code> |
* Set environment variables as follows: | * Set environment variables as follows: | ||
<pre> | <pre> |
Revision as of 10:30, 15 October 2015
This article is a stub. You can help by expanding it.
A binding for the OpenAL Utility Toolkit
Downloads
- Hackage: https://hackage.haskell.org/package/ALUT
- Repository: git clone https://github.com/haskell-openal/ALUT
Windows specific actions
The following must be installed first:
- MSYS2 or MinGW/MSYS
- OpenAL
- The C++ package of ALUT, freealut
To install freealut:
- Start a shell
- Go to the directory where you want the freealut source code, for example
C:\Temp
- Fetch the source code with Git:
- Install CMake
- Start cmake-gui
- Enter the directory of the freealut source code (
C:\Temp\freealut
) and the directory where you want the compile result, for exampleC:\Temp\freealut\build
- Add the entries in the table below, by pressing "Add Entry" for each entry
Name | Type | Value |
CMAKE_GENERATOR
|
String
|
MinGW Makefiles
|
OPENAL_INCLUDE_DIR
|
Filepath
|
the directory containing the OpenAL header file |
CMAKE_INSTALL_PREFIX
|
Filepath
|
C:\Libraries\ALUT
|
- Press "Configure"
- Press "Generate"; this will generate a makefile
- Edit freealut\include\AL\alut.h:
- Change line 34:
#define ALUT_APIENTRY __cdecl
- to:
#define ALUT_APIENTRY __stdcall
- In the shell, go to the directory where you want the compile result, for example
C:\Temp\freealut\build
- Start the MSYS shell:
sh
- Run the make utility:
mingw32-make install
- Set environment variables as follows:
Set LIBRARY_DIR=C:\Libraries Set C_INCLUDE_PATH=%LIBRARY_DIR%\ALUT\include;%C_INCLUDE_PATH% Set LIBRARY_PATH=%LIBRARY_DIR%\ALUT\lib;%LIBRARY_PATH% Set PATH=%LIBRARY_DIR%\ALUT\bin;%PATH%
- If you need these variables more often, set them permanently.
- The directory
%LIBRARY_DIR%\ALUT\bin
contains libalut.dll; this DLL must always be in the search path when you run an ALUT-using application.
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
An alternative to ALUT might be OALWrapper