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 !
2 | No.2 Revision |
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 !
3 | No.3 Revision |
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 !
4 | No.4 Revision |
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 !