buildwin.bat 668 B

1234567891011121314151617181920
  1. REM Use the downloaded OpenSSL, for all other libraries the bundled version is used.
  2. REM On Appveyor different OpenSSL versions are available, therefore the directory contains the version information.
  3. set BORG_OPENSSL_PREFIX=C:\OpenSSL-v111-Win64
  4. set BORG_USE_BUNDLED_B2=YES
  5. set BORG_USE_BUNDLED_LZ4=YES
  6. set BORG_USE_BUNDLED_ZSTD=YES
  7. set BORG_USE_BUNDLED_XXHASH=YES
  8. REM Somehow on my machine rc.exe was not found. Adding the Windows Kit to the path worked.
  9. set PATH=%PATH%;C:\Program Files (x86)\Windows Kits\10\bin\10.0.18362.0\x64
  10. REM Run the build in the project directory.
  11. SET WORKPATH=%~dp0\..
  12. pushd %WORKPATH%
  13. python setup.py clean
  14. pip install -v -e .
  15. popd