Fix buildDir documentation.

This commit is contained in:
Eugen Minciu 2014-12-28 22:21:24 +02:00
commit 499ce7438f

View file

@ -211,10 +211,11 @@ their own packages to it! Take a look at
Separated by commas.
* ``srcDir`` - Specifies the directory which contains the .nim source files.
**Default**: The directory in which the .nimble file resides; i.e. root dir of
package.
* ``buildDir`` - Specifies the directory which contains the .nim source files.
**Default**: The directory in which the .nimble file resides; i.e. root dir of
package.
the package.
* ``buildDir`` - Specifies the directory where ``nimble build`` will output
binaries.
**Default**: The directory in which the .nimble file resides; i.e.
root dir of the package.
* ``bin`` - A list of files which should be built separated by commas with
no file extension required. This option turns your package into a *binary
package*, nimble will build the files specified and install them appropriately.
@ -231,4 +232,4 @@ their own packages to it! Take a look at
range separated by commas.
**Example**: ``nimrod >= 0.9.2, jester``; with this value your package will
depend on ``nimrod`` version 0.9.2 or greater and on any version of ``jester``.