Skip to content
Snippets Groups Projects
Commit c7591b70 authored by Sylvester Joosten's avatar Sylvester Joosten
Browse files

fixed cmake command

parent ddfe95e8
Branches
No related tags found
No related merge requests found
Pipeline #10153 passed
......@@ -43,7 +43,7 @@ directories named compact (but not always).
### Compile the detector library
```bash
cmake -B build -DCMAKE_INSTALL_PREFIX=../local/ -S . -DCMAKE_CXX_STANDARD=17
cmake -B build -S . -DCMAKE_INSTALL_PREFIX=../local/ -DCMAKE_CXX_STANDARD=17
cmake --build build -j4 -- install
```
......
......@@ -16,9 +16,8 @@ cd part2
### Compile the detector library
```bash
mkdir build
cmake ../. -DCMAKE_INSTALL_PREFIX=../../local
make -j4 install
cmake -B build -S . -DCMAKE_INSTALL_PREFIX=../local/ -DCMAKE_CXX_STANDARD=17
cmake --build build -j4 -- install
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment