make command examples uniform

This commit is contained in:
Sebastien Loriot 2015-07-06 06:51:38 +02:00
parent 7473831191
commit 03d60276b4
1 changed files with 7 additions and 7 deletions

View File

@ -45,18 +45,18 @@ of where you built the library (environment or cmake variable).
Here is an example of how to build in debug the examples from the 3D Triangulations package: Here is an example of how to build in debug the examples from the 3D Triangulations package:
``` {.bash} ``` {.bash}
> cmake -DCGAL_DIR:PATH=/path/to/cgal.git/build/debug /path/to/cgal.git/Triangulation_3/examples/Triangulation_3 cmake -DCGAL_DIR:PATH=/path/to/cgal.git/build/debug /path/to/cgal.git/Triangulation_3/examples/Triangulation_3
> make make
``` ```
If you're trying to build examples or tests that does not already have a `CMakeLists.txt`, you can trigger its creation by calling the script [`cgal_create_cmake_script`](Scripts/scripts/cgal_create_cmake_script) found in `/path/to/cgal.git/Scripts/scripts/` at the root of the example/test directory. Here is an example for the examples of the 2D Triangulation package: If you're trying to build examples or tests that does not already have a `CMakeLists.txt`, you can trigger its creation by calling the script [`cgal_create_cmake_script`](Scripts/scripts/cgal_create_cmake_script) found in `/path/to/cgal.git/Scripts/scripts/` at the root of the example/test directory. Here is an example for the examples of the 2D Triangulation package:
``` {.bash} ``` {.bash}
> cd /path/to/cgal.git/Triangulation_2/examples/Triangulation_2 cd /path/to/cgal.git/Triangulation_2/examples/Triangulation_2
> /path/to/cgal.git/Scripts/scripts/cgal_create_cmake_script /path/to/cgal.git/Scripts/scripts/cgal_create_cmake_script
> cd - cd -
> cmake -DCGAL_DIR:PATH=/path/to/cgal.git/build/debug /path/to/cgal.git/Triangulation_2/examples/Triangulation_2 cmake -DCGAL_DIR:PATH=/path/to/cgal.git/build/debug /path/to/cgal.git/Triangulation_2/examples/Triangulation_2
> make make
``` ```
Note If You Switch Between Branches Note If You Switch Between Branches