Skip to content

Commit 9e28e0d

Browse files
committed
Suggest to use cmake not make, because we don't require make
1 parent 1deeaab commit 9e28e0d

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

README.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,22 @@ Model API searches for additional information required for model inference, data
2424
```
2525

2626
- Build library:
27-
- Create `build` folder and navigate into it:
28-
```
29-
mkdir build && cd build
30-
```
31-
- Run cmake:
32-
```
33-
cmake ../model_api/cpp -DOpenCV_DIR=<OpenCV cmake dir> -DOpenVINO_DIR=<OpenVINO cmake dir>
34-
```
35-
- Build:
36-
```
37-
cmake --build . -j
38-
```
39-
- To build a `.tar.gz` package with the library, run:
40-
```
41-
make package
42-
```
27+
- Create `build` folder and navigate into it:
28+
```
29+
mkdir build && cd build
30+
```
31+
- Run cmake:
32+
```
33+
cmake ../model_api/cpp -DOpenCV_DIR=<OpenCV cmake dir> -DOpenVINO_DIR=<OpenVINO cmake dir>
34+
```
35+
- Build:
36+
```
37+
cmake --build . -j
38+
```
39+
- To build a `.tar.gz` package with the library, run:
40+
```
41+
cmake --build . --target package -j
42+
```
4343

4444
## Usage
4545
### Python

0 commit comments

Comments
 (0)