Hi all, Could someone take the time to explain on our wiki how to compile Inkscape "out-of-source" on Linux/Ubuntu? Such that all object files and whatnot are not put in-between the source files in /src/ but in a separate folder, say /build/.
Thanks a bunch! Johan
On Wed, 2011-10-05 at 21:52 +0200, Johan Engelen wrote:
Could someone take the time to explain on our wiki how to compile Inkscape "out-of-source" on Linux/Ubuntu? Such that all object files and whatnot are not put in-between the source files in /src/ but in a separate folder, say /build/.
There's a lot of options. My favorite is roughly like this:
$ bzr branch lp:inkscape $ cd inkscape $ ./autogen.sh $ mkdir build $ cd build $ ../configure --prefix=`pwd`/../install $ make $ make install
YMMV, IANAL, and all that jazz ;-)
--Ted
On Thu, Oct 6, 2011 at 10:04 AM, Ted Gould <ted@...11...> wrote:
On Wed, 2011-10-05 at 21:52 +0200, Johan Engelen wrote:
Could someone take the time to explain on our wiki how to compile Inkscape "out-of-source" on Linux/Ubuntu? Such that all object files and whatnot are not put in-between the source files in /src/ but in a separate folder, say /build/.
There's a lot of options. My favorite is roughly like this:
$ bzr branch lp:inkscape $ cd inkscape $ ./autogen.sh $ mkdir build $ cd build $ ../configure --prefix=`pwd`/../install $ make $ make install
YMMV, IANAL, and all that jazz ;-)
--Ted
With CMake (I normally don't build in subdirs but it works ok too):
$ bzr branch lp:inkscape $ mkdir inkscape_build $ cd inkscape_build $ cmake ../inkscape $ make $ make install
On 6-10-2011 1:04, Ted Gould wrote:
On Wed, 2011-10-05 at 21:52 +0200, Johan Engelen wrote:
Could someone take the time to explain on our wiki how to compile
Inkscape "out-of-source" on Linux/Ubuntu? Such that all object files and whatnot are not put in-between the source files in /src/ but in a separate folder, say /build/.
There's a lot of options. My favorite is roughly like this:
$ bzr branch lp:inkscape $ cd inkscape $ ./autogen.sh $ mkdir build $ cd build $ ../configure --prefix=`pwd`/../install $ make $ make install
Precisely what I wanted to hear, thanks Ted !!!
:) Johan
participants (3)
-
Campbell Barton
-
Johan Engelen
-
Ted Gould