Commit f1c8e042 authored by Alexander Alekhin's avatar Alexander Alekhin

ios framework: don't disable opencv_world in dynamic framework

parent a78d143c
......@@ -135,7 +135,7 @@ class Builder:
] if self.dynamic else [])
if len(self.exclude) > 0:
args += ["-DBUILD_opencv_world=OFF"]
args += ["-DBUILD_opencv_world=OFF"] if not self.dynamic else []
args += ["-DBUILD_opencv_%s=OFF" % m for m in self.exclude]
return args
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment