Skip to content
Snippets Groups Projects
Commit b764fe58 authored by Brecht Van Lommel's avatar Brecht Van Lommel
Browse files

CMake OS X: enable FFMPEG and Quicktime by default to match release and scons.

parent 94416a49
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment