Skip to content

Commit eff7acf

Browse files
author
Matevz Morato
committed
README.md updates
1 parent 88b1ea6 commit eff7acf

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
DepthAI library for interfacing with Luxonis DepthAI hardware.
88

9-
> ⚠️ This is a `v3.x.y` version of the library which is still in active development without a stable API yet.
9+
> ℹ️ This is a `v3.x.y` version of the library which is in release candidate stage.
1010
1111
> ℹ️ For porting code from `v2` version of the library, we recommend using the [porting guide](./V2V3PortinGuide.md)
1212
@@ -33,6 +33,7 @@ cmake --build build
3333
To install OpenCV:
3434
MacOS: `brew install opencv`
3535
Linux: `sudo apt install libopencv-dev`
36+
Windows: `choco install opencv`
3637

3738
To install PCL:
3839
MacOS: `brew install pcl`
@@ -63,10 +64,15 @@ Then configure and build
6364

6465
```
6566
cmake -S . -B build
66-
cmake --build build
67+
cmake --build build --parallel [num CPU cores]
6768
```
69+
On Windows, we currently only build the dependencies in Release mode, so you may want to add `-DCMAKE_BUILD_TYPE=Release` to the configuration step and you'll need to specify the location of the OpenCV installation. In case you used chocolatey to install OpenCV, you can use the following command:
6870

69-
> ℹ️ To speed up build times, use `cmake --build build --parallel [num CPU cores]` (CMake >= 3.12).
71+
```
72+
cmake -S . -B build -DOpenCV_DIR=C:/tools/opencv/build -DCMAKE_BUILD_TYPE=Release
73+
cmake --build build --config Release --parallel [num CPU cores]
74+
```
75+
> ℹ️ To speed up build times, use `cmake --build build --parallel [num CPU cores]`.
7076
7177
### Dynamic library
7278

0 commit comments

Comments
 (0)