aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGanesh Viswanathan <dev@genotrance.com>2017-12-04 14:29:38 -0600
committerGanesh Viswanathan <dev@genotrance.com>2017-12-04 14:29:38 -0600
commit2ae534476fb135b51f5a32a5d0749329941d69f9 (patch)
tree135de7ec1c334e70416fda2d6a154dd1f4a9ccad /README.md
parent3a6c74afb7eb4039228f057bb6b4716471c19a64 (diff)
downloadnimgen-2ae534476fb135b51f5a32a5d0749329941d69f9.tar.gz
nimgen-2ae534476fb135b51f5a32a5d0749329941d69f9.zip
Readme updates
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 818f6c8..d0fb651 100644
--- a/README.md
+++ b/README.md
@@ -70,6 +70,12 @@ The following keys can be used to prepare dependencies such as downloading ZIP f
```execute``` = command to run during preparation
+_[n.wildcard]_
+
+File wildcards such as *.nim, ssl*.h, etc. can be used to perform tasks across a group of files. This is useful to define common operations such as global text replacements without having to specify an explicit section for every single file. These operations will be performed on every matching file that is defined as a _sourcefile_ or recursed files. Only applies on source files following the wildcard declarations.
+
+```wildcard``` = pattern to match against. All keys following the wildcard declaration will apply to matched files
+
_[sourcefile]_
The following keys apply to library source code and help with generating the .nim files. -win, -lin and -osx can be used for OS specific tasks. E.g. dynlib-win
@@ -106,12 +112,6 @@ The following keys apply to library source code (before processing) and generate
```replace``` = string value to replace search string in file
-_[n.wildcard]_
-
-File wildcards such as *.nim, ssl*.h, etc. can be used to perform tasks across a group of files. This is useful to define common operations such as global text replacements without having to specify an explicit section for every single file. These operations will be performed on every matching file that is defined as a _sourcefile_ or recursed files.
-
-```wildcard``` = pattern to match against. All keys following the wildcard declaration will apply to matched files
-
__Feedback__
Nimgen is a work in progress and any feedback or suggestions are welcome. It is hosted on [GitHub](https://github.com/genotrance/nimgen) with an MIT license so issues, forks and PRs are most appreciated.