/
githubmirror
/
xmlsec
Обзор
Документация
Войти
/
githubmirror
/
xmlsec
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.3.6
scripts/README-WINDOWS.md.in
39 строк
1 KB
lsh123
Add scripts to build windows release (#844)
08 окт 2024, 01:22
Не верифицирован
08 окт 2024, 01:22
cff6a7f
Код
Авторство
О чём код?
# This package contains the LibXML2, LibXSLT, OpenSSL, and XMLSec binaries for Win64 (/MD runtime). ## LibXML2 (@libxml2_version@) ``` cd win32 cscript configure.js iconv=no zlib=no cruntime=/MD prefix=c:\local\distro\libxml2 nmake nmake install ``` ## LibXSLT (@libxslt_version@) ``` cd win32 cscript configure.js iconv=no zlib=no cruntime=/MD prefix=c:\local\distro\libxslt include=c:\local\distro\libxml2\include\libxml2 lib=c:\local\distro\libxml2\lib nmake nmake install ``` ## OpenSSL (@openssl_version@) ``` C:\Strawberry\perl\bin\perl.exe Configure no-unit-test --prefix=c:\local\distro\openssl --release VC-WIN64A nmake nmake install_sw ``` ## XMLSec (@xmlsec_version@) ``` cd win32 cscript configure.js pedantic=yes werror=yes with-dl=yes cruntime=/MD xslt=yes crypto=openssl,mscng unicode=yes prefix=C:\local\distro\xmlsec include=C:\local\distro\libxml2\include;C:\local\distro\libxml2\include\libxml2;C:\local\distro\libxslt\include;C:\local\distro\openssl\include; lib=C:\local\distro\libxml2\lib;C:\local\distro\libxslt\lib;C:\local\distro\openssl\lib nmake nmake install ``` ## Archive ``` cd c:\local\distro find . -name "*.pdb" -exec rm {} \; zip -r xmlsec1-@xmlsec_version@-win64.zip libxml2 libxslt openssl xmlsec README.md ```