CMake: Disable ffmpeg support by default since it is only used by the WX port which is disabled by default
This commit is contained in:
parent
a8bf9389b3
commit
d6cf243545
|
@ -17,6 +17,7 @@ option( ENABLE_ASM_CORE "Enable x86 ASM CPU cores" OFF )
|
|||
option( ENABLE_ASM_SCALERS "Enable x86 ASM graphic filters" OFF )
|
||||
option( ENABLE_LINK "Enable GBA linking functionality" ON )
|
||||
option( ENABLE_LIRC "Enable LIRC support" OFF )
|
||||
option( ENABLE_FFMPEG "Enable ffmpeg A/V recording" OFF )
|
||||
if(ENABLE_ASM_SCALERS)
|
||||
option( ENABLE_MMX "Enable MMX" OFF )
|
||||
endif(ENABLE_ASM_SCALERS)
|
||||
|
@ -92,7 +93,6 @@ IF( ENABLE_GTK )
|
|||
PKG_CHECK_MODULES ( GTKGLMM REQUIRED gtkglextmm-x11-1.2 )
|
||||
ENDIF( ENABLE_GTK )
|
||||
|
||||
option( ENABLE_FFMPEG "Enable ffmpeg A/V recording" ON )
|
||||
if(ENABLE_FFMPEG)
|
||||
FIND_PACKAGE ( PkgConfig REQUIRED )
|
||||
|
||||
|
|
Loading…
Reference in New Issue