From c2075fb681dd618603fa0dee75583c15f38eec10 Mon Sep 17 00:00:00 2001 From: janbar Date: Sat, 28 Oct 2023 15:31:24 +0200 Subject: [PATCH] update readme --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 60fb3172..4b36e186 100644 --- a/README.md +++ b/README.md @@ -47,10 +47,15 @@ To build for mobile devices, use the following command to enable behaviors for m ``` cmake -B build -DBUILD_DEVICE_MOBILE=ON -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . ``` -Finally build it to make the target binary `osmin` +Finally build it to make the target binary `osmin`. ``` cmake --build build/ -j8 ``` +Running Osmin outside the build tree, you have to install the required assets. +``` +sudo cmake --build build/ --target install +``` +Uninstall can be done by the following `sudo cmake --build build/ --target uninstall`. ## About osmin on Android