From: Neal Gompa Date: Thu, 13 May 2010 08:14:35 +0000 (-0500) Subject: Made fixes for includes in 'openal_wrapper.cpp' and tweaked the CMake scripts a bit X-Git-Url: https://git.jsancho.org/?a=commitdiff_plain;h=abf8445c6bae263c5a931e3c5693b7879e19df8e;p=lugaru.git Made fixes for includes in 'openal_wrapper.cpp' and tweaked the CMake scripts a bit --- diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index 3aba8d7..b62b4b7 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -62,6 +62,7 @@ set(LUGARU_H Game.h Lights.h LinkedList.h + MacCompatibility.h Models.h Objects.h Person.h @@ -100,7 +101,6 @@ if(CMAKE_HOST_APPLE) set(LUGARU_H ${LUGARU_H} "Carbon Include.h" - MacCompatibility.h CarbonStdCLib.h) endif(CMAKE_HOST_APPLE) diff --git a/Source/openal_wrapper.cpp b/Source/openal_wrapper.cpp index 686bd24..7386bc3 100644 --- a/Source/openal_wrapper.cpp +++ b/Source/openal_wrapper.cpp @@ -33,8 +33,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "MacCompatibility.h" #include "fmod.h" -#include "AL/al.h" -#include "AL/alc.h" +#include "al.h" +#include "alc.h" #include "ogg/ogg.h" #include "vorbis/vorbisfile.h"