summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--INSTALL.md19
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