the default setup script name becomes "setup"

it can be changed in autocmake.cfg
This commit is contained in:
Radovan Bast
2015-10-12 15:30:51 +02:00
parent db3a250e30
commit fd8ec93851
12 changed files with 91 additions and 75 deletions

View File

@ -39,7 +39,7 @@ Generating the CMake infrastructure
Now customize ``autocmake.cfg`` to your needs
(see :ref:`autocmake_cfg`)
and then run the ``update.py`` script which
creates ``CMakeLists.txt`` and ``setup.py`` in the target path::
creates ``CMakeLists.txt`` and a setup script in the target path::
$ python update.py ..
@ -59,10 +59,10 @@ called ``downloaded/``::
Building the project
--------------------
Now you have ``CMakeLists.txt`` and ``setup.py`` in the project root and the project
Now you have ``CMakeLists.txt`` and setup script in the project root and the project
can be built::
$ cd ..
$ python setup.py [-h]
$ python setup [-h]
$ cd build
$ make