diff options
| author | Bryce Harrington <bryce@bryceharrington.org> | 2016-01-17 21:53:40 +0000 |
|---|---|---|
| committer | bryce <bryce@bryceharrington.org> | 2016-01-17 21:53:40 +0000 |
| commit | 5e7c931a2622f8fc1193b4bb7af9e3fe485023f8 (patch) | |
| tree | ac73c910db2d658aae1b7119dff907b7f8a4e09b /README | |
| parent | cmake: Fix installation directories for man pages (diff) | |
| download | inkscape-5e7c931a2622f8fc1193b4bb7af9e3fe485023f8.tar.gz inkscape-5e7c931a2622f8fc1193b4bb7af9e3fe485023f8.zip | |
README: Add some basic cmake directions
(bzr r14607)
Diffstat (limited to 'README')
| -rw-r--r-- | README | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -24,16 +24,21 @@ processes. Basic Installation ================== -Inkscape uses the standard procedure for compilation and installation: +Inkscape version 0.92 and newer can be build using cmake: - ./configure + mkdir build + cd build + cmake .. make make install -If a "./configure" file is not present, you can create it by running -the "./autogen.sh" command, which calls in turn a number of other -programs such as automake and autoconf. See INSTALL for more -details. +We also still include autoconf in 0.92 as an alternate build system, in +case anything goes haywire with the new cmake scripts: + + ./autogen.sh # Optional, use if configure doesn't exist + ./configure + make + make install For platform specific instructions please read the README file that is associated with that platform (e.g. for Mac OS X read README.osx) |
