Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kalwalt committed Mar 11, 2024
1 parent 86744e5 commit cadf2a9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,20 @@ Then, move on to the emscripten build:
## Pre-built binaries

You don't need to build the libs you can grab from [Releases](https://github.com/webarkit/opencv-em/releases)

## Use of pre-built binaries

You can use FetchContent in a cmake project (CMakeLists.txt):

```cmake
include(FetchContent)
FetchContent_Declare(
build_opencv
URL https://github.com/webarkit/opencv-em/releases/download/0.1.4/opencv-4.7.0.zip
)
FetchContent_MakeAvailable(build_opencv)
```

or you can use [curl](https://github.com/curl/curl) or [bootstrapping](https://github.com/corporateshark/bootstrapping) to download the package and make it available to your project.

0 comments on commit cadf2a9

Please sign in to comment.