Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
EIC
tutorials
eic_tutorial
Commits
c7591b70
Commit
c7591b70
authored
May 21, 2021
by
Sylvester Joosten
Browse files
fixed cmake command
parent
ddfe95e8
Pipeline
#10153
passed with stage
in 1 minute and 31 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/docs/part1/simple_detector.md
View file @
c7591b70
...
...
@@ -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
```
...
...
src/docs/part2/adding_detectors.md
View file @
c7591b70
...
...
@@ -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
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment