1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
***************************************************************
libLAS Installation
***************************************************************
Unix
~~~~~~~~~~~~~~~~~~~
libLAS uses a typical GNU autoconf/automake framework for
building and installation on unix-like platforms.
The quick and dirty installation that would install things
by default in /usr/local might look like:
::
./configure
make
make install
Configure libLAS for debugging and install in my home directory:
::
./configure --enable-debug --prefix=/home/hobu/liblas
If you are building directly from subversion, you will need to generate
the configure script first. This will require that your system have
autotools installed.
::
./autogen.sh
Windows
~~~~~~~~~~~~~~~~~~~
Copy the windows package zip file into a directory of your
choosing and unzip. You should be able to run the utility
applications.
|