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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2013-11-17 12:23:18 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2013-11-17 18:37:10 +0400
commitb764fe58c575c7c9343f635cc0cf7836c2a4e14b (patch)
treec04352bb0837b975161bb86dd6b3a0a8c4b5dfb2 /CMakeLists.txt
parent94416a493c3a5c1b2406b991ff67fa4e964ead08 (diff)
CMake OS X: enable FFMPEG and Quicktime by default to match release and scons.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a408a8100e5..8195785a372 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -216,10 +216,13 @@ option(WITH_IMAGE_FRAMESERVER "Enable image FrameServer Support for rendering"
# Audio/Video format support
option(WITH_CODEC_AVI "Enable Blenders own AVI file support (raw/jpeg)" ON)
option(WITH_CODEC_FFMPEG "Enable FFMPeg Support (http://ffmpeg.org)" OFF)
-
option(WITH_CODEC_SNDFILE "Enable libsndfile Support (http://www.mega-nerd.com/libsndfile)" OFF)
+
if(APPLE)
- option(WITH_CODEC_QUICKTIME "Enable Quicktime Support" OFF)
+ option(WITH_CODEC_FFMPEG "Enable FFMPeg Support (http://ffmpeg.org)" ON)
+ option(WITH_CODEC_QUICKTIME "Enable Quicktime Support" ON)
+else()
+ option(WITH_CODEC_FFMPEG "Enable FFMPeg Support (http://ffmpeg.org)" OFF)
endif()
# 3D format support