1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-26 04:12:41 +01:00

Merge pull request #250 from JohnPaulHarold/openal_headers

OpenAL headers, fix for OSX compile
This commit is contained in:
Daniel Evans 2016-11-22 21:00:49 +00:00 committed by GitHub
commit c63d12b70a
4 changed files with 8 additions and 6 deletions

View File

@ -94,6 +94,7 @@ include_directories(
${GLM_INCLUDE_DIRS}
${OPENGL_INCLUDE_DIR}
${BULLET_INCLUDE_DIRS}
${OPENAL_INCLUDE_DIR}
)
# External-internal dependencies

View File

@ -1,8 +1,9 @@
#pragma once
#ifndef _MADSTREAM_HPP_
#define _MADSTREAM_HPP_
#include <AL/al.h>
#include <AL/alc.h>
#include "al.h"
#include "alc.h"
#include <fcntl.h>
#include <mad.h>
#include <stdint.h>

View File

@ -1,7 +1,7 @@
#pragma once
#include <AL/al.h>
#include <AL/alc.h>
#include "al.h"
#include "alc.h"
#include <sndfile.h>
#include <map>

View File

@ -1,7 +1,7 @@
#include "audio/alCheck.hpp"
#include <AL/al.h>
#include <AL/alc.h>
#include "al.h"
#include "alc.h"
#include <iostream>