summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMartin Owens <doctormo@gmail.com>2017-06-15 01:27:50 +0000
committerMartin Owens <doctormo@gmail.com>2017-06-15 01:27:50 +0000
commitfd4ad7c6f78fd5548e5c32b1dac06729ab3c82d5 (patch)
tree8397af70044dd081178f7b808f42bce61febc7ef /README.md
parentMerge branch 'master' of gitlab.com:marcjeanmougin/inkscape (diff)
downloadinkscape-fd4ad7c6f78fd5548e5c32b1dac06729ab3c82d5.tar.gz
inkscape-fd4ad7c6f78fd5548e5c32b1dac06729ab3c82d5.zip
Update docs with 'Running Without Installing' instructions
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/README.md b/README.md
index d4f2ba4bf..ac467d176 100644
--- a/README.md
+++ b/README.md
@@ -37,6 +37,25 @@ make install
Other platforms such as Windows and Mac require a lot more and are considered
a developer and packager task. These instructions are kept on the Inkscape wiki.
+Running Without Installing
+==========================
+
+For developers and others who want to run inskape without installing it:
+
+```bash
+ln -s . share/inkscape
+mkdir build
+cd build
+cmake -DCMAKE_INSTALL_PREFIX:PATH=$PWD/../
+make -j4
+./bin/inkscape
+```
+
+This won't work for other platforms such as Windows and Mac, see above. But
+what it is doing is linking the share directory into a location where
+the inkscape binary will be able to find it. Allowing you to change the
+inkscape shared files without rebuilding or installing.
+
Required Dependencies
=====================