aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2022-04-17 08:25:14 +0900
committer坂本 貴史 <o-takashi@sakamocchi.jp>2022-04-17 10:59:13 +0900
commit7b00c6b603ac959dad44276254a41b4dac5dcfdc (patch)
treee6f32fc9720c25b8045a8d12c184afcfc4ce7fbf
parent61aefdeccf4c00b07e5945e07ec05deaac16ef3a (diff)
downloadlibhinoko-7b00c6b603ac959dad44276254a41b4dac5dcfdc.tar.gz
update README
In most subcommands of meson, '-C' option is available to switch current working directory. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
-rw-r--r--README.rst20
1 files changed, 10 insertions, 10 deletions
diff --git a/README.rst b/README.rst
index 446b2bc..ac8b8e9 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
libhinoko
=========
-2022/03/11
+2022/04/17
Takashi Sakamoto
Introduction
@@ -52,11 +52,10 @@ How to build
::
- $ meson . build
- $ cd build
- $ ninja
- $ ninja install
- ($ ninja test)
+ $ meson (--prefix=directory-to-install) build
+ $ meson compile -C build
+ $ meson install -C build
+ ($ meson test -C build)
When working with gobject-introspection, ``Hinoko-0.0.typelib`` should be installed in your system
girepository so that ``libgirepository`` can find it. Of course, your system LD should find ELF
@@ -69,10 +68,11 @@ How to refer document
::
- $ meson -Ddoc=true . build
- $ cd build
- $ ninja
- $ ninja install
+ $ meson configure (--prefix=directory-to-install) -Ddoc=true build
+ $ meson compile -C build
+ $ meson install -C build
+
+You can see documentation files under ``(directory-to-install)/share/doc/hinoko/``.
Loss of backward compatibility between v0.5/v0.6 releases
=========================================================