We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fe61f9 commit 0fcdd82Copy full SHA for 0fcdd82
1 file changed
setup.py
@@ -162,11 +162,6 @@ def main():
162
# Raw paths relative to sourcetree root.
163
files_outside_package_dir = {"cv2": ["LICENSE.txt", "LICENSE-3RD-PARTY.txt"]}
164
165
- ci_cmake_generator = (
166
- ["-G", "Visual Studio 14" + (" Win64" if is64 else "")]
167
- if os.name == "nt"
168
- else ["-G", "Unix Makefiles"]
169
- )
170
171
cmake_args = (
172
(ci_cmake_generator if is_CI_build else [])
@@ -195,7 +190,6 @@ def main():
195
190
"-DBUILD_DOCS=OFF",
196
191
"-DPYTHON3_LIMITED_API=ON",
197
192
"-DBUILD_OPENEXR=ON",
198
- "-DWITH_OBSENSOR=OFF",
199
193
]
200
194
+ (
201
# CMake flags for windows/arm64 build
0 commit comments