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:
authorJörg Müller <nexyon@gmail.com>2017-08-19 12:45:20 +0300
committerJörg Müller <nexyon@gmail.com>2017-08-19 12:46:21 +0300
commit08094e8f23a374f8f8d1df535d0fa6c1964f8d5e (patch)
tree2e5f48dce04ca3332fea267c5803f587dc23242a /CMakeLists.txt
parent9a262ed47ecb1c9f43053b0653364c59d9595fdf (diff)
Audaspace: cmake fixes, lowering to 3.0 minimum required.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9ea7581ec34..4c5b2264207 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -579,6 +579,12 @@ if(NOT WITH_GAMEENGINE AND WITH_PLAYER)
message(FATAL_ERROR "WITH_PLAYER requires WITH_GAMEENGINE")
endif()
+if(NOT WITH_CXX11)
+ if(WITH_AUDASPACE AND NOT WITH_SYSTEM_AUDASPACE)
+ message(FATAL_ERROR "WITH_AUDASPACE requires WITH_CXX11")
+ endif()
+endif()
+
if(NOT WITH_AUDASPACE)
if(WITH_OPENAL)
message(FATAL_ERROR "WITH_OPENAL requires WITH_AUDASPACE")