diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-05-04 22:10:37 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-05-04 22:10:37 +0300 |
commit | 723cf0f15e90f4482f7579aa5e10b31dbd3d05ce (patch) | |
tree | fb5ca4c4fe7532b1ea1af64076f350ce6aa8159f | |
parent | 147d2a3f4b83bc0d370ee1cc1576a3defeab4a74 (diff) | |
download | meson-723cf0f15e90f4482f7579aa5e10b31dbd3d05ce.zip meson-723cf0f15e90f4482f7579aa5e10b31dbd3d05ce.tar.gz meson-723cf0f15e90f4482f7579aa5e10b31dbd3d05ce.tar.bz2 |
Readme tweaking.
-rw-r--r-- | readme.txt | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -31,11 +31,11 @@ called 'meson.build'. To generate the build system run this command: meson <source directory> <build directory> 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: +the current directory and autodetect what you mean. This allows you to +do things like this: -cd source_root; mkdir build; cd build; meson.py .. -cd source_root; mkdir build; meson.py build +cd source_root; mkdir build; cd build; meson .. +cd source_root; mkdir build; meson build To compile, cd into your build directory and type 'ninja'. To run unit tests, type 'ninja test'. |