summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormrsmidge <smidge@xsco.net>2019-06-30 13:46:49 +0100
committermrsmidge <smidge@xsco.net>2019-06-30 13:46:49 +0100
commit27365451266e44611497dbeac9f991a1a03dc024 (patch)
tree68b996e66989657006dbb6599bae2590a9851b69
parentfa9775218a7fc3ff228f44da30c4672f09bb7701 (diff)
Added mention of Clang Format and fixed some README typos
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 7a2d7bf..e9be478 100644
--- a/README.md
+++ b/README.md
@@ -159,7 +159,7 @@ int main(int argc, char **argv)
How Do I Build It?
============================
-`libdjinterop` requires headers to be installed for:
+`libdjinterop` requires the following compile-time dependencies:
* [zlib](http://zlib.net)
* [Boost](https://boost.org) (libraries required for unit tests; headers only for the main library)
@@ -169,7 +169,7 @@ How Do I Build It?
```
$ meson build/
$ ninja -C build/
-$ ninja -C build/ check (optional, run unit tests)
+$ ninja -C build/ test (optional, run unit tests)
# ninja -C build/ install (as a suitably-privileged user)
```
@@ -182,5 +182,6 @@ Thanks To
* [SQLite](https://sqlite.org)
* [SQLite Modern C++ Wrapper](https://github.com/SqliteModernCpp/sqlite_modern_cpp)
* [zlib](http://zlib.net)
+* [ClangFormat](https://clang.llvm.org/docs/ClangFormat.html)
Interfacing with the Engine Library database format was made a lot easier with the help of MixMasterG from ATGR, who is the author of the [Denon Conversion Utility](https://sellfy.com/atgr_production_team).