From: Neal Gompa Date: Thu, 13 May 2010 23:23:30 +0000 (-0500) Subject: Oops, forgot to actually pre-define the OpenAL internal library configuration X-Git-Url: https://git.jsancho.org/?a=commitdiff_plain;h=a8af112a2bbb271e01be91973cba1c99e36b6cff;p=lugaru.git Oops, forgot to actually pre-define the OpenAL internal library configuration --- diff --git a/CMakeLists.txt b/CMakeLists.txt index e3eb9c2..c93b56b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -148,7 +148,7 @@ find_package(OpenGL REQUIRED) # force this include dir no matter what, so we get sane headers. include_directories("${DEPDIR}/OpenGL") -option (LUGARU_FORCE_INTERNAL_OPENAL) +option (LUGARU_FORCE_INTERNAL_OPENAL "Force internal libOpenAL, even if there's a system version" False) if (NOT LUGARU_FORCE_INTERNAL_OPENAL) find_package(OpenAL REQUIRED) endif (NOT LUGARU_FORCE_INTERNAL_OPENAL)