Update building instructions for CMake

This commit is contained in:
Roland Kaufmann 2013-02-11 23:42:43 +01:00
parent 7139586a8a
commit 4b24bb3664

18
README
View File

@ -39,8 +39,7 @@ DEPENDENCIES FOR DEBIAN BASED DISTRIBUTIONS (Debian Squeeze/Ubuntu Precise)
--------------------------------------------------------------------------- ---------------------------------------------------------------------------
# packages necessary for building # packages necessary for building
sudo apt-get install -y build-essential gfortran pkg-config libtool \ sudo apt-get install -y build-essential gfortran cmake cmake-data util-linux
automake autoconf
# packages necessary for documentation # packages necessary for documentation
sudo apt-get install -y doxygen ghostscript texlive-latex-recommended pgf sudo apt-get install -y doxygen ghostscript texlive-latex-recommended pgf
@ -71,10 +70,10 @@ DEPENDENCIES FOR SUSE BASED DISTRIBUTIONS
----------------------------------------- -----------------------------------------
# libraries # libraries
sudo zypper in blas libblas3 lapack liblapack3 libboost libxml2 umfpack sudo zypper in libblas3 liblapack3 libboost libxml2 libumfpack
# tools # tools
sudo zypper in gcc automake autoconf git doxygen sudo zypper in gcc cmake git doxygen
# DUNE libraries # DUNE libraries
sudo zypper ar http://download.opensuse.org/repositories/science/openSUSE_12.2/science.repo sudo zypper ar http://download.opensuse.org/repositories/science/openSUSE_12.2/science.repo
@ -97,12 +96,11 @@ There are two ways to build the opm-core library:
1. As a stand-alone library. 1. As a stand-alone library.
cd opm-core cd opm-core
autoreconf -i
./configure ./configure
make -j -l 0.9 make
If you want to install the library: If you want to install the library:
make install
or (if installing to /usr/local or similar)
sudo make install sudo make install
2. As a dune module. 2. As a dune module.
@ -120,5 +118,7 @@ DOCUMENTATION
Efforts have been made to document the code with Doxygen. Efforts have been made to document the code with Doxygen.
In order to build the documentation, enter the command In order to build the documentation, enter the command
$ doxygen
make doc
in the topmost directory. in the topmost directory.