From 48f159b030b166f00fffad60fe7f7e4508b5945d Mon Sep 17 00:00:00 2001 From: Bryce Harrington Date: Sun, 7 Apr 2019 18:08:53 -0700 Subject: INSTALL: Improve cmake invocation examples The directions advise the user to run cmake from a build/ directory, so the example should assume this. Add an example for building with debug symbols. We want to make it easy for people to help us figure out bugs. :-) --- INSTALL.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index c0eb85609..aff5207ae 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -58,4 +58,8 @@ or, for more advanced cmake settings: For example, to build inkscape with only SVG 1 support, and no SVG 2, do: - $ cmake . -DWITH_SVG2=OFF + $ cmake .. -DWITH_SVG2=OFF + +Or, to build inkscape with debugging symbols, do: + + $ cmake -DCMAKE_BUILD_TYPE=Debug .. -- cgit v1.2.3