On Wed, Apr 29, 2015 at 03:35:36AM -0400, Krzysztof KosiĆski wrote:
On 29 Apr 2015 05:35, "Bryce Harrington" <bryce@...961...> wrote:
On Wed, Apr 29, 2015 at 02:51:15AM +0100, Ken Moffat wrote:
Modern versions of cmake seem to be much better than those from a few years ago (fewer weird dependencies if you want to use system versions of libraries, rather than (static versions of) those which might have been shipped in cmake's source). But documentation for builders (i.e. what options I can change, which extra dependencies exist which I might want to enable) seems to generally be absent.
True, cmake doesn't have as nice of a listing as automake. You can at least get a list of the variables and their defaults via:
cmake -L
Running that in Inkscape's root currently provides two or three dozen configurable settings.
Most of those settings would be autodetected based on automated tests, is that correct?
Yes. Presumably they're all autodetected. 99% of the time one should not need to bother with any of them.
Bryce