Disable FFmpeg support when building the Python wheel (#2978)

pull/2987/head
Adrià 2 months ago committed by GitHub
parent 0947215ddb
commit 6ae301a117
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -133,7 +133,8 @@ class CMakeBuild(build_ext):
extdir = os.path.abspath(os.path.dirname(self.get_ext_fullpath(ext.name)))
cmake_args = ['-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=' + extdir,
'-DPYTHON_EXECUTABLE=' + sys.executable]
'-DPYTHON_EXECUTABLE=' + sys.executable,
'-DDLIB_USE_FFMPEG=OFF',]
cmake_args += cmake_extra_options

Loading…
Cancel
Save