summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-31 09:28:54 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-31 09:28:54 +0200
commit7bc7712b14501c212e5b162d7317f118c6586546 (patch)
tree64ec54bdb852871d14c146d03a0c850adbe4a0b6 /.github/workflows
parent974a045acfdae6a9980d9473f9dc3ece716aa0e1 (diff)
Try to find gmp
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/pip-packaging-windows.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/pip-packaging-windows.yml b/.github/workflows/pip-packaging-windows.yml
index 687d62a9..53abc036 100644
--- a/.github/workflows/pip-packaging-windows.yml
+++ b/.github/workflows/pip-packaging-windows.yml
@@ -33,7 +33,7 @@ jobs:
python --version
mkdir build
cd build
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DPython_ADDITIONAL_VERSIONS=3 ..
+ cmake -DCMAKE_BUILD_TYPE=Release -DGMP_INCLUDE_DIR="c:/vcpkg/installed/x64-windows/include" -DGMP_LIBRARIES="c:/vcpkg/installed/x64-windows/lib/mpir.lib" -DGMP_LIBRARIES_DIR="c:/vcpkg/installed/x64-windows/lib" -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DPython_ADDITIONAL_VERSIONS=3 ..
cd src/python
python setup.py bdist_wheel
- name: Publish on PyPi