summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2023-01-04 00:59:18 +0100
committerAki <please@ignore.pl>2023-01-04 00:59:18 +0100
commit27ebde39fda0fb18a63f8974aca36a6118a16322 (patch)
treeb6213578ee6c8be1c61097ab4fb1a04faf32bc44 /README.md
parent49571905c06046a9db0e60e063bf48c92fbb73a9 (diff)
downloadkurator-27ebde39fda0fb18a63f8974aca36a6118a16322.zip
kurator-27ebde39fda0fb18a63f8974aca36a6118a16322.tar.gz
kurator-27ebde39fda0fb18a63f8974aca36a6118a16322.tar.bz2
Added Nlohmann JSON library to dependencies
Diffstat (limited to 'README.md')
-rw-r--r--README.md22
1 files changed, 16 insertions, 6 deletions
diff --git a/README.md b/README.md
index f5b57c7..3a94630 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,24 @@
# Building
Third-party libraries used:
- * raylib
* EnTT
+ * nlohmann\_json
+ * raylib
+
+Both Raylib and Nlohmann's JSON libraries are available in mainstream distribution repositories. Confirmed with Arch
+Linux and Ubuntu. In case they are not, you can install Raylib[1] and JSON[2] from source. EnTT is rarely available. For
+Arch Linux you can use AUR package[3]. Otherwise, install from source git repository[4].
+
+After making sure all dependencies are available, run CMake to generate and build:
+
+ $ cmake -B build .
+ $ cd build/
+ $ make
-Raylib is quite popular and should be available in most of the official package repositories. If it is not available on
-your platform, it can be build with CMake and installed from its source git repository[1]. EnTT is rarely available. For
-Arch Linux you can use AUR package[2]. Otherwise, install from source git repository[3].
+Or use any preferred equivalent method.
[1] https://github.com/raysan5/raylib
-[2] https://aur.archlinux.org/packages/entt
-[3] https://github.com/skypjack/entt
+[2] https://github.com/nlohmann/json
+[3] https://aur.archlinux.org/packages/entt
+[4] https://github.com/skypjack/entt