diff options
author | Corey Ashford <cjashfor@linux.vnet.ibm.com> | 2017-05-01 12:12:13 -0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-05-01 23:06:27 +0300 |
commit | d6dfc94188fcc79d6f3a343130f575d0da115734 (patch) | |
tree | 332718f5ec487424ba03cf62405453a0bae25df9 /docs/markdown | |
parent | b65b9fe2710210cd38b912490c519910a68e8655 (diff) | |
download | meson-d6dfc94188fcc79d6f3a343130f575d0da115734.zip meson-d6dfc94188fcc79d6f3a343130f575d0da115734.tar.gz meson-d6dfc94188fcc79d6f3a343130f575d0da115734.tar.bz2 |
Update Overview.md
fix typo
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Overview.md b/docs/markdown/Overview.md index b469d9a..537aa8f 100644 --- a/docs/markdown/Overview.md +++ b/docs/markdown/Overview.md @@ -17,6 +17,6 @@ Meson follows the overall structure of other popular build systems, such as CMak The directory that contains the source code is called the *source directory*. Correspondingly the directory where the output is written is called the *build directory*. In other build systems it is common to have these two be the same directory. This is called an *in-source build*. The case where the build directory is separate is called an *out-of-source build*. -What sets Meson apart from most build systems is that it enforces a separate build directory. All files created by the build system are put in the build directory. It is actually impossible to do an in-source build. For people used to building inside their source tree, this may seem like a needles complication. However there are several benefits to doing only out-of-source builds. These will be explained in the next chapter. +What sets Meson apart from most build systems is that it enforces a separate build directory. All files created by the build system are put in the build directory. It is actually impossible to do an in-source build. For people used to building inside their source tree, this may seem like a needless complication. However there are several benefits to doing only out-of-source builds. These will be explained in the next chapter. When the source code is built, a set of *unit tests* is usually run. They ensure that the program is working as it should. If it does, the build result can be *installed* after which it is ready for use. |