Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

there is a cmake option, when building the opencv libs:

cmake -DBUILD_SHARED_LIBS=OFF

and another option, when building your own program using those:

set(OpenCV_STATIC ON)

(this should go into your CMakeLists.txt)

good luck !

there is a cmake option, when building the opencv libs:

cmake -DBUILD_SHARED_LIBS=OFF

and another option, when building your own program using those:

set(OpenCV_STATIC ON)

(this should go into your local CMakeLists.txt)

good luck !

there is a cmake option, when building the opencv libs:

cmake -DBUILD_SHARED_LIBS=OFF

and another option, when building your own program using those:

set(OpenCV_STATIC ON)

(this should go into your local CMakeLists.txt)CMakeLists.txt

((note: please really try with cmake for your own prog first. e.g. pkg-config won't be able to order the libs by dependancy and will miss any system libs, that now ned to be linked (again, order-dependant)))

good luck !

there is a cmake option, when building the opencv libs:

cmake -DBUILD_SHARED_LIBS=OFF

and another option, when building your own program using those:

set(OpenCV_STATIC ON)

(this should go into your local CMakeLists.txt

((note: please really try with cmake for your own prog first. e.g. pkg-config won't be able to order the libs by dependancy and will miss any system libs, that now ned need to be linked (again, order-dependant)))

good luck !