From d923f36b4891b0b6d1951143f5d378891d413d4d Mon Sep 17 00:00:00 2001 From: maier Date: Wed, 7 Nov 2012 15:00:08 +0000 Subject: [PATCH] Polish up some last bits. git-svn-id: https://svn.dealii.org/branches/branch_cmake@27459 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/development/cmake.html | 86 ++++++++++++++++++++---------- deal.II/doc/readme.html | 12 ++--- 2 files changed, 64 insertions(+), 34 deletions(-) diff --git a/deal.II/doc/development/cmake.html b/deal.II/doc/development/cmake.html index b784adb179..d4bb49b7cf 100644 --- a/deal.II/doc/development/cmake.html +++ b/deal.II/doc/development/cmake.html @@ -147,14 +147,18 @@

- Just like with simple make, cmake - allows to build only selected targets. The difference is that - it's not quite so easy any more what the names of these targets - are. The most common scenario is that you only want to build - debug or optimized libraries. This can be achieved using the - following commands in the build directory: - TODO: This is a bit misleading, as make install - always implies make all. + If you want to configure, build and install only the debug + or optimized variant of the deal.II library, + have a look at the discussion of CMAKE_BUILD_TYPE + found here. +

+ While developing on the library itself it is often desirable + to only compile certain parts. The build system generated by + cmake allows to build specific, selected targets. + + A common scenario is that you only want to build debug or optimized + libraries. This can be achieved using the following commands in + the build directory:

 
     make  deal_II.g     # only debug library
@@ -416,27 +420,50 @@
 
       
     

@@ -451,15 +478,18 @@ DebugRelease target. - For more information, see the general discussion +

+

+ For more information, see the general discussion found here.

diff --git a/deal.II/doc/readme.html b/deal.II/doc/readme.html index e791aecbc2..001e1d130f 100644 --- a/deal.II/doc/readme.html +++ b/deal.II/doc/readme.html @@ -223,17 +223,17 @@

Note: