Changeset View
Changeset View
Standalone View
Standalone View
CMakeLists.txt
| Show First 20 Lines • Show All 220 Lines • ▼ Show 20 Lines | |||||
| if(APPLE) | if(APPLE) | ||||
| option(WITH_CODEC_FFMPEG "Enable FFMPeg Support (http://ffmpeg.org)" ON) | option(WITH_CODEC_FFMPEG "Enable FFMPeg Support (http://ffmpeg.org)" ON) | ||||
| option(WITH_CODEC_QUICKTIME "Enable Quicktime Support" ON) | option(WITH_CODEC_QUICKTIME "Enable Quicktime Support" ON) | ||||
| else() | else() | ||||
| option(WITH_CODEC_FFMPEG "Enable FFMPeg Support (http://ffmpeg.org)" OFF) | option(WITH_CODEC_FFMPEG "Enable FFMPeg Support (http://ffmpeg.org)" OFF) | ||||
| endif() | endif() | ||||
| # 3D format support | # 3D format support | ||||
| # disable opencollada on non-apple unix because opencollada has no package for debian | # disable opencollada when we don't have precompiled libs | ||||
| if(APPLE OR WIN32) | |||||
| option(WITH_OPENCOLLADA "Enable OpenCollada Support (http://www.opencollada.org)" OFF) | option(WITH_OPENCOLLADA "Enable OpenCollada Support (http://www.opencollada.org)" OFF) | ||||
| endif() | |||||
| # Sound output | # Sound output | ||||
| option(WITH_SDL "Enable SDL for sound and joystick support" ON) | option(WITH_SDL "Enable SDL for sound and joystick support" ON) | ||||
| option(WITH_OPENAL "Enable OpenAL Support (http://www.openal.org)" ON) | option(WITH_OPENAL "Enable OpenAL Support (http://www.openal.org)" ON) | ||||
| option(WITH_JACK "Enable Jack Support (http://www.jackaudio.org)" OFF) | option(WITH_JACK "Enable Jack Support (http://www.jackaudio.org)" OFF) | ||||
| if(UNIX AND NOT APPLE) | if(UNIX AND NOT APPLE) | ||||
| option(WITH_JACK_DYNLOAD "Enable runtime dynamic Jack libraries loading" OFF) | option(WITH_JACK_DYNLOAD "Enable runtime dynamic Jack libraries loading" OFF) | ||||
| endif() | endif() | ||||
| ▲ Show 20 Lines • Show All 2,068 Lines • Show Last 20 Lines | |||||