Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,10 @@ def main():
cmake_args.append("-DWITH_WIN32UI=OFF")
cmake_args.append("-DWITH_QT=OFF")
cmake_args.append("-DWITH_GTK=OFF")
if is_CI_build:
cmake_args.append(
"-DWITH_MSMF=OFF"
) # see: https://github.com/skvark/opencv-python/issues/263
# see: https://github.com/skvark/opencv-python/issues/263, https://github.com/opencv/opencv-python/issues/771
cmake_args.append("-DWITH_MSMF=OFF")
cmake_args.append("-DHAVE_MSMF=OFF")
cmake_args.append("-DHAVE_OBSENSOR_MSMF=OFF")

if sys.platform.startswith("linux") and not is64 and "bdist_wheel" in sys.argv:
subprocess.check_call("patch -p0 < patches/patchOpenEXR", shell=True)
Expand Down
Loading