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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-04-18 13:10:08 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-04-18 13:10:08 +0300
commitb92d777d16c34e8b06a61061cbb4ce5eacf23fe0 (patch)
treeb2ddcf27991e820488c83e9fd0f162b417bb2b31 /intern/audaspace
parent3bc73c1b61daef26e20dbfa389bd7fbda210a344 (diff)
Fix compilation error when using SDL dynamic loading
Diffstat (limited to 'intern/audaspace')
-rw-r--r--intern/audaspace/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/intern/audaspace/CMakeLists.txt b/intern/audaspace/CMakeLists.txt
index 7baaf301f6c..1972a5fc94c 100644
--- a/intern/audaspace/CMakeLists.txt
+++ b/intern/audaspace/CMakeLists.txt
@@ -45,6 +45,11 @@ if(NOT WITH_SYSTEM_AUDASPACE)
list(APPEND LIB
audaspace
)
+ if(WITH_SDL_DYNLOAD)
+ list(APPEND LIB
+ extern_sdlew
+ )
+ endif()
endif()
if(WITH_PYTHON)