add help for MS Windows downloading

point to the PS alternative to wget
This commit is contained in:
Miro Iliaš
2015-08-24 11:30:43 +02:00
parent 6d33b694c5
commit cfcf83c664

View File

@ -8,14 +8,17 @@ Bootstrapping Autocmake
----------------------- -----------------------
Download the ``update.py`` and execute it with ``--self`` to fetch other Download the ``update.py`` and execute it with ``--self`` to fetch other
infrastructure files which will be needed to build the project (on Windows infrastructure files which will be needed to build the project::
``wget`` is probably not available - in this case use an alternative)::
$ mkdir cmake # does not have to be called "cmake" - take the name you prefer $ mkdir cmake # does not have to be called "cmake" - take the name you prefer
$ cd cmake $ cd cmake
$ wget https://github.com/scisoft/autocmake/raw/master/update.py $ wget https://github.com/scisoft/autocmake/raw/master/update.py
$ python update.py --self $ python update.py --self
On the MS Windows system, use the PowerShell wget-replacement::
$ Invoke-WebRequest https://github.com/scisoft/autocmake/raw/master/update.py -OutFile update.py
This creates (or updates) the following files (an existing ``autocmake.cfg`` is This creates (or updates) the following files (an existing ``autocmake.cfg`` is
not overwritten by the script):: not overwritten by the script)::