mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 20:20:20 +08:00
d1fc3e6b5a
some refactoring added gpu module to compilation
28 lines
522 B
CMake
28 lines
522 B
CMake
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)
|
|
add_subdirectory(haartraining)
|
|
add_subdirectory(traincascade)
|
|
|
|
|
|
add_subdirectory(gpu)
|