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:
authorJoerg Mueller <nexyon@gmail.com>2011-08-06 21:57:20 +0400
committerJoerg Mueller <nexyon@gmail.com>2011-08-06 21:57:20 +0400
commitc334bf69a7282254bb80bb2896bd8716930a4adf (patch)
tree08291f87da9ba64b80c881d704cf251b884ba7c2 /source/blender/editors/sound/CMakeLists.txt
parente73cf35f4ad470d553540d6adbe89af5cc0c1f4f (diff)
3D Audio GSoC:
Mixdown functionality. * Mixdown possible via libsndfile and ffmpeg! * Fixed some ffmpeg deprecation warnings * Mixdown UI only shows working Container, Codec and Format combinations! * Minor bugs and warnings fixed
Diffstat (limited to 'source/blender/editors/sound/CMakeLists.txt')
-rw-r--r--source/blender/editors/sound/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/editors/sound/CMakeLists.txt b/source/blender/editors/sound/CMakeLists.txt
index f66288812ad..11da4165ec8 100644
--- a/source/blender/editors/sound/CMakeLists.txt
+++ b/source/blender/editors/sound/CMakeLists.txt
@@ -47,4 +47,12 @@ if(WITH_AUDASPACE)
add_definitions(-DWITH_AUDASPACE)
endif()
+if(WITH_CODEC_FFMPEG)
+ add_definitions(-DWITH_FFMPEG)
+endif()
+
+if(WITH_CODEC_SNDFILE)
+ add_definitions(-DWITH_SNDFILE)
+endif()
+
blender_add_lib(bf_editor_sound "${SRC}" "${INC}" "${INC_SYS}")