mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
446 B
18 lines
446 B
if(ANDROID) |
|
configure_file("${CMAKE_SOURCE_DIR}/Android.mk.modules.in" "${CMAKE_CURRENT_BINARY_DIR}/Android.mk") |
|
endif() |
|
|
|
add_subdirectory(lapack) |
|
add_subdirectory(zlib) |
|
if(WITH_JASPER AND NOT JASPER_FOUND) |
|
add_subdirectory(libjasper) |
|
endif() |
|
if(WITH_JPEG AND NOT JPEG_FOUND) |
|
add_subdirectory(libjpeg) |
|
endif() |
|
if(WITH_PNG AND NOT PNG_FOUND) |
|
add_subdirectory(libpng) |
|
endif() |
|
if(WITH_TIFF AND NOT TIFF_FOUND) |
|
add_subdirectory(libtiff) |
|
endif()
|
|
|