From: kanschat Date: Wed, 13 Mar 2013 21:38:18 +0000 (+0000) Subject: Some structural changes X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a369c0a8b0f2df705c02b003cdaf19e772693a5;p=dealii-svn.git Some structural changes git-svn-id: https://svn.dealii.org/trunk@28892 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/development/cmake.html b/deal.II/doc/development/cmake.html index 900399389d..976ed53639 100644 --- a/deal.II/doc/development/cmake.html +++ b/deal.II/doc/development/cmake.html @@ -5,7 +5,7 @@ The deal.II Readme - + @@ -42,6 +42,7 @@
  • Manual override
  • Component selection
  • Build configuration +
  • Selecting a compiler
  • Installation
  • How to use deal.II in your CMake project @@ -390,12 +391,15 @@

    Manual override

    +

    Warning:Do not do this unless absolutely necessary!

    +

    It is possible to override the CMake find mechanism for external libraries manually. This is useful if a non standard library (e.g. lapack/blas) should be used but cannot be found by the FIND_PACKAGE(...) mechanism of cmake. In this case you can set by hand: -

    +    

    +
     
         cmake -DLAPACK_FOUND=true \
               -DLAPACK_LIBRARIES="library;and;complete;link;interface" \
    @@ -495,6 +499,9 @@
             href="../readme.html#configuration">here.
         

    + +

    Selecting a compiler

    +

    Compilers can be switched either by command line or by setting CMAKE_(C|CXX)_COMPILER: