Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatryk Obara <dreamer.tan@gmail.com>2021-01-25 15:10:46 +0300
committerPatryk Obara <dreamer.tan@gmail.com>2021-01-25 15:12:22 +0300
commitf8fbc9f7456a8a576b6aac0a8459cce1d295121e (patch)
treeed84ad3528ea6b6b872d34670759de51bfbfd59e /BUILD.md
parentb87b77bcf240a419d97af1fb4c6eac76faca9b8f (diff)
Document invoking ninja with -C flag
Instead of cd into directory and then invoking ninja.
Diffstat (limited to 'BUILD.md')
-rw-r--r--BUILD.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/BUILD.md b/BUILD.md
index 99ba11136..a0183c037 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -480,8 +480,7 @@ meson setup build
meson compile -C build
# for older versions
-cd build
-ninja
+ninja -C build
```
### Run unit tests
@@ -535,4 +534,4 @@ meson setup -Db_coverage=true build
meson test -C build
cd build
ninja coverage-html
-``` \ No newline at end of file
+```