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 8124920 commit a3bbeaaCopy full SHA for a3bbeaa
.github/workflows/build.yml
@@ -24,7 +24,7 @@ jobs:
24
build_wheels:
25
strategy:
26
matrix:
27
- os: ["ubuntu-latest", "macos-latest"]
+ os: ["ubuntu-latest", "macos-latest", "windows-latest"]
28
29
runs-on: ${{ matrix.os }}
30
steps:
pyproject.toml
@@ -35,3 +35,7 @@ before-all = "make c_lib"
35
archs = ["x86_64", "universal2", "arm64"]
36
environment = { MACOSX_DEPLOYMENT_TARGET="10.15" }
37
before-build = "make clean && make c_lib"
38
+
39
+[tool.cibuildwheel.windows]
40
+archs = ["AMD64"]
41
+before-build = '"C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\VC\\Auxiliary\\Build\\vcvars64.bat" && cl "ada_url\\ada.cpp" /c /nologo /Fo"ada_url\\ada.o" /O2 /GL /MD /W3 /EHsc /std:c++17'
0 commit comments