summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2019-01-21 17:53:53 -0500
committerOlivier CrĂȘte <olivier.crete@collabora.com>2019-01-21 17:53:53 -0500
commitba65377f0650e5a7d6e154d7e80b3823a6130183 (patch)
treebddfe31e17caf896b928e2bce44db8bac222ce5d
parentf71db86e13af9b8dfabcff2ecbb3b1da0a769542 (diff)
README: Add a little explanation on how to add this as a dependency.
-rw-r--r--README.md15
1 files changed, 14 insertions, 1 deletions
diff --git a/README.md b/README.md
index 63675d65c2..56b09fb1cf 100644
--- a/README.md
+++ b/README.md
@@ -19,11 +19,24 @@ you can install these with:
sudo apt-get install mono-mcs mono-devel
-Building & Installing
+Building
----
meson build && ninja -C build/
+Installing
+----
+
+This package is not installed as part of the system. It should either
+be built into a Nuget or used as a subproject like this. For example,
+with meson, one would use it like this:
+
+
+ subproject('gstreamer-sharp', default_options: ['install=false'])
+ gst_sharp = subproject('gstreamer-sharp')
+ gst_sharp_dep = gst_sharp.get_variable('gst_sharp_dep')
+
+
HACKING
-------