From 00fdf182b8f079af47946290ef9e9a8f54295cdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Sun, 1 Mar 2020 20:14:05 +0100 Subject: [PATCH] INSTALL.md: Fix missing path in cmake invocation --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index c2c9526c05e..50f7a3d3e8c 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -8,7 +8,7 @@ git clone https://github.com/CGAL/cgal.git /path/to/cgal.git cd /path/to/cgal.git/Triangulation_2/examples/Triangulation_2 mkdir -p build/debug cd build/debug -cmake -DCMAKE_BUILD_TYPE=Debug -DCGAL_DIR=/path/to/cgal.git +cmake -DCMAKE_BUILD_TYPE=Debug -DCGAL_DIR=/path/to/cgal.git ../.. make ```