1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 06:52:34 +02:00

Fix OpenAL includes (fixes OSX build)

This commit is contained in:
John-Paul Harold 2016-11-17 11:10:29 +00:00
parent d9e85dbc9f
commit 9a1d1033e7
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>