diff --git a/README.md b/README.md index 4d531d1..8d56a89 100644 --- a/README.md +++ b/README.md @@ -42,9 +42,9 @@ You can use [scripts/release.sh](scripts/release.sh), it will create package for You can also use [overlay](https://github.com/andrew-aladev/overlay) for gentoo. Installation for Windows (Visual Studio) from source is not so trivial: -1. Install Visual Studio with components: msvc, sdk. -2. Install [chocolatey](https://chocolatey.org) with components: cmake, curl, git, python, xsltproc, docbook-bundle, zip. -3. Install [asciidoc](https://asciidoc.org/INSTALL.html). +1. Install Visual Studio with components: msvc, windows sdk, ucrt. +2. Install [chocolatey](https://chocolatey.org) with components: cmake, curl, git, python, xsltproc, docbook-bundle, zip, nsis. +3. Install [asciidoc](https://pypi.org/project/asciidoc/). 4. Download [docbook-xml-4.5.zip](https://docbook.org/xml/4.5/docbook-xml-4.5.zip) and unpack it to `C:\ProgramData\chocolatey\lib\docbook-bundle\docbook-4.5`. 5. Edit `C:\ProgramData\chocolatey\lib\docbook-bundle\catalog.xml` and append ``. 6. Launch `x64 Native Tools Command Promp` as admin. @@ -53,7 +53,8 @@ Installation for Windows (Visual Studio) from source is not so trivial: git clone "https://github.com/libtom/libtommath.git" --depth 1 && cd "libtommath" nmake -f "makefile.msvc" install && cd ".." set "XML_CATALOG_FILES=C:\ProgramData\chocolatey\lib\docbook-bundle\catalog.xml" -set "INCLUDE=C:\devel\include;%INCLUDE%" && set "LIB=C:\devel\lib;%LIB%" && set "PATH=C:\devel\bin;%PATH%" +set "INCLUDE=C:\devel\include;%INCLUDE%" && set "LIB=C:\devel\lib;%LIB%" +set "PATH=C:\devel\bin;C:\Program Files\Git\bin;C:\Program Files\CMake\bin;%PATH%" cd build && bash "..\scripts\release.sh" ```