Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Beuarain <jacques.beaurain@gmail.com>2006-12-13 15:27:11 +0300
committerJacques Beuarain <jacques.beaurain@gmail.com>2006-12-13 15:27:11 +0300
commit442c9592354a17b1bbd7aea72822ed81f98afe30 (patch)
treed96f489c7ef999022505cc4dacd263e7eb1dfe95 /intern/SoundSystem
parentae7fcb58bccec94f5e72c5019402d66764352198 (diff)
CMake: Fix reqular expression message on Windows from Apple framework detection by using common OPENAL_INC variable instead of CMake detection var OPENAL_INCLUDE_DIR
Diffstat (limited to 'intern/SoundSystem')
-rw-r--r--intern/SoundSystem/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/SoundSystem/CMakeLists.txt b/intern/SoundSystem/CMakeLists.txt
index 080c5b945e1..428b8db01ee 100644
--- a/intern/SoundSystem/CMakeLists.txt
+++ b/intern/SoundSystem/CMakeLists.txt
@@ -32,7 +32,7 @@ SET(INC . intern ../moto/include ../string dummy openal sdl)
IF(WITH_OPENAL)
FILE(GLOB SRC dummy/*.cpp intern/*.cpp openal/*.cpp sdl/*.cpp)
INCLUDE_DIRECTORIES(${OPENAL_INC} ${SDL_INC})
- STRING(REGEX MATCH ".*ramework.*" FRAMEWORK ${OPENAL_INCLUDE_DIR})
+ STRING(REGEX MATCH ".*ramework.*" FRAMEWORK ${OPENAL_INC})
IF(FRAMEWORK)
ADD_DEFINITIONS(-DAPPLE_FRAMEWORK_FIX)
ENDIF(FRAMEWORK)