We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb2ce32 commit 34c8ef1Copy full SHA for 34c8ef1
.github/workflows/build_wheels_windows.yml
@@ -72,9 +72,12 @@ jobs:
72
set "CI_BUILD=1" && python setup.py bdist_wheel --py-limited-api=cp37 --dist-dir=%cd%\wheelhouse -v
73
shell: cmd
74
75
- - name: Check for Media Foundation
+ - name: Find CMakeCache.txt and check for MSMF
76
run: |
77
- findstr /i MSMF build\CMakeCache.txt || echo "MSMF not found"
+ for /r %%f in (CMakeCache.txt) do (
78
+ echo Found: %%f
79
+ findstr /i MSMF "%%f"
80
+ )
81
82
83
- name: Saving all wheels
0 commit comments