Put release build in its own directory

This commit is contained in:
andrew morton 2015-07-03 22:08:41 -07:00
parent 9d7f8c9308
commit 1b72353dba
1 changed files with 6 additions and 6 deletions

View File

@ -27,12 +27,12 @@ make
Here is an example of how to build the library in Release: Here is an example of how to build the library in Release:
``` {.bash} ``` {.bash}
> git clone https://github.com/CGAL/cgal.git /path/to/cgal.git git clone https://github.com/CGAL/cgal.git /path/to/cgal.git
> cd /path/to/cgal.git cd /path/to/cgal.git
> mkdir -p build/debug mkdir -p build/release
> cd build/debug cd build/release
> cmake -DCMAKE_BUILD_TYPE=Release ../.. cmake -DCMAKE_BUILD_TYPE=Release ../..
> make make
``` ```
Note that *no installation is required* to use that version of CGAL once it has been compiled. Note that *no installation is required* to use that version of CGAL once it has been compiled.