diff options
| author | Martin Owens <doctormo@gmail.com> | 2017-06-15 01:27:50 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2017-06-15 01:27:50 +0000 |
| commit | fd4ad7c6f78fd5548e5c32b1dac06729ab3c82d5 (patch) | |
| tree | 8397af70044dd081178f7b808f42bce61febc7ef /README.md | |
| parent | Merge branch 'master' of gitlab.com:marcjeanmougin/inkscape (diff) | |
| download | inkscape-fd4ad7c6f78fd5548e5c32b1dac06729ab3c82d5.tar.gz inkscape-fd4ad7c6f78fd5548e5c32b1dac06729ab3c82d5.zip | |
Update docs with 'Running Without Installing' instructions
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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 ===================== |
