aboutsummaryrefslogtreecommitdiff
path: root/readme.txt
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-02-17 21:11:50 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-02-17 21:11:50 +0200
commit9418ece26a83c3c9925ace74eef20b3c19058bbb (patch)
treee4e48f4808d36a78dfda5930b2dddc1e8198daec /readme.txt
parentbaaa9882910d88cc5d5b550169de7e9a99b536cc (diff)
downloadmeson-9418ece26a83c3c9925ace74eef20b3c19058bbb.zip
meson-9418ece26a83c3c9925ace74eef20b3c19058bbb.tar.gz
meson-9418ece26a83c3c9925ace74eef20b3c19058bbb.tar.bz2
Renamed system from builder to Meson.
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/readme.txt b/readme.txt
index bd9811b..c075d81 100644
--- a/readme.txt
+++ b/readme.txt
@@ -6,17 +6,17 @@ Dependencies: Python3 and Python-Ply
Running:
-Builder requires that you have a source directory and a build directory
+Meson requires that you have a source directory and a build directory
and that these two are different. In your source root must exist a file
-called 'builder.txt'. To generate the build system run this command:
+called 'meson.build'. To generate the build system run this command:
-builder.py <source directory> <build directory>
+meson.py <source directory> <build directory>
-You can omit either of the two directories, and Builder will substitute
+You can omit either of the two directories, and Meson will substitute
the current directory and autodetect what you mean. This mean that you
can do things like this:
-cd source_root; mkdir build; cd build; builder ..
-cd source_root; mkdir build; builder build
+cd source_root; mkdir build; cd build; meson.py ..
+cd source_root; mkdir build; meson.py build
For questions contact jpakkane@gmail.com.