Another OSX cmake fix (make openal compile)

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7116 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2011-02-08 12:35:43 +00:00
parent c163237d6f
commit b567e8fb31
1 changed files with 3 additions and 0 deletions

View File

@ -26,6 +26,9 @@
#ifdef _WIN32
#include "../../../../Externals/OpenAL/include/al.h"
#include "../../../../Externals/OpenAL/include/alc.h"
#elif defined __APPLE__
#include <OpenAL/al.h>
#include <OpenAL/alc.h>
#else
#include <AL/al.h>
#include <AL/alc.h>