开发者

OpenCV as a static library (cmake options)

开发者 https://www.devze.com 2023-04-09 14:55 出处:网络
I want to use OpenCV library in an embedded system and I need to compile my project using OpenCV as a static library.

I want to use OpenCV library in an embedded system and I need to compile my project using OpenCV as a static library.

How can I create the libr开发者_StackOverflow社区ary using cmake options ?


To build OpenCV as static library you need to set BUILD_SHARED_LIBS flag to false/off:

cmake -DBUILD_SHARED_LIBS=OFF ..

But I think it is not enough for your task because you actually need to cross-compile library for you architecture. In case of Android or IOS such port already exists and you can simply use it. In case of another platform you need to create your own cmake toolchain file for cross-compiling and probably make a number of fixes in OpenCV build system.


The BUILD_SHARED_LIBS=OFF cmake option will create static libraries.

It should be noted that at the time of writing this, OpenCV does not really support static build, in that the result will not be useable when installed somewhere.

https://github.com/opencv/opencv/issues/21447#issuecomment-1013088996

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号