mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 22:00:25 +08:00
8ee50c422b
mainly cmake stuff, but in persistance the wcstombs is not supported on android, and in sift.cpp there was and ifdef that affected arm and this causes undefined symbols on android.
37 lines
669 B
CMake
37 lines
669 B
CMake
if(ANDROID)
|
|
configure_file("${CMAKE_SOURCE_DIR}/Android.mk.modules.in" "${CMAKE_CURRENT_BINARY_DIR}/Android.mk")
|
|
endif()
|
|
|
|
add_subdirectory(calib3d)
|
|
add_subdirectory(core)
|
|
add_subdirectory(features2d)
|
|
|
|
if(MSVC OR MINGW)
|
|
if(NOT CMAKE_CL_64)
|
|
add_subdirectory(ffmpeg)
|
|
endif()
|
|
endif()
|
|
|
|
add_subdirectory(highgui)
|
|
add_subdirectory(imgproc)
|
|
add_subdirectory(legacy)
|
|
add_subdirectory(contrib)
|
|
add_subdirectory(ml)
|
|
add_subdirectory(objdetect)
|
|
|
|
if(PYTHONLIBS_FOUND AND BUILD_NEW_PYTHON_SUPPORT)
|
|
add_subdirectory(python)
|
|
endif()
|
|
|
|
add_subdirectory(video)
|
|
|
|
if(!ANDROID)
|
|
add_subdirectory(haartraining)
|
|
add_subdirectory(traincascade)
|
|
add_subdirectory(gpu)
|
|
endif()
|
|
|
|
|
|
|
|
|