From e4462fc8ea69c4e0c7e1e22d3f4d63aa6c3a046b Mon Sep 17 00:00:00 2001 From: Julien Jerphanion Date: Sun, 16 Jun 2019 17:53:42 +0000 Subject: Add bash syntax on `INSTALL.md` --- INSTALL.md | 19 +++++++++++++------ 1 file 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 -- cgit v1.2.3