diff options
| author | Julien Jerphanion <git@jjerphan.xyz> | 2019-06-16 17:53:42 +0000 |
|---|---|---|
| committer | Patrick Storz <eduard.braun2@gmx.de> | 2019-06-16 17:53:42 +0000 |
| commit | e4462fc8ea69c4e0c7e1e22d3f4d63aa6c3a046b (patch) | |
| tree | 42b020431f4a5c86fdc52ae654458b81a196958c /INSTALL.md | |
| parent | Improve default colors and remove symlink icons (diff) | |
| download | inkscape-e4462fc8ea69c4e0c7e1e22d3f4d63aa6c3a046b.tar.gz inkscape-e4462fc8ea69c4e0c7e1e22d3f4d63aa6c3a046b.zip | |
Add bash syntax on `INSTALL.md`
Diffstat (limited to 'INSTALL.md')
| -rw-r--r-- | INSTALL.md | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/INSTALL.md b/INSTALL.md index aff5207ae..e96c0fc32 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -3,7 +3,7 @@ Basic Installation Inkscape version 0.92 and newer can be build using cmake: -```bash +```sh mkdir build cd build cmake .. @@ -50,16 +50,23 @@ Build Options A number of configuration settings can be overridden through cmake. To see a list of the options available for inkscape, run: - $ cmake -L - +```sh +cmake -L +``` or, for more advanced cmake settings: - $ cmake --help +```sh +cmake --help +``` For example, to build inkscape with only SVG 1 support, and no SVG 2, do: - $ cmake .. -DWITH_SVG2=OFF +```sh +cmake .. -DWITH_SVG2=OFF +``` Or, to build inkscape with debugging symbols, do: - $ cmake -DCMAKE_BUILD_TYPE=Debug .. +```sh +cmake -DCMAKE_BUILD_TYPE=Debug .. +```
\ No newline at end of file |
