Skip to content

Commit

Permalink
Changed all the minimum OpenCV versions to 2.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikhuber committed Feb 12, 2014
1 parent 2e7628f commit f114d36
Show file tree
Hide file tree
Showing 31 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion 3dmmRendererGUI/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )
MESSAGE(STATUS "=== Configuring ${SUBPROJECT_NAME} ===")

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui)
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
6 changes: 3 additions & 3 deletions adaptiveTrackingApp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )
# find dependencies
FIND_PACKAGE(BLAS REQUIRED)
FIND_PACKAGE(Boost 1.48.0 COMPONENTS random system filesystem program_options REQUIRED)
FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core imgproc highgui video)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core imgproc highgui video)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")
# Matlab
SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
FIND_PACKAGE(MATLAB REQUIRED)

IF(WIN32)
IF(WIN32) # TODO Make use of new WITH_KINECT flag!
# In Windows only: Include Microsoft Kinect SDK
SET( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake )
FIND_PACKAGE(KinectSDK REQUIRED)
Expand All @@ -23,7 +23,7 @@ IF(WIN32)

# Fix for VS2012 that has _VARIADIC_MAX set to 5 (the C++11 standard requires a value
# of 10). Don't set too high because it increases compiler memory usage / compile-time.
add_definitions( -D_VARIADIC_MAX=9 )
add_definitions( -D_VARIADIC_MAX=9 ) # TODO I think we don't need that anymore with VS2013?
ELSE()
SET(KINECT_LIBNAME "")
ENDIF()
Expand Down
2 changes: 1 addition & 1 deletion benchmarkApp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )
# find dependencies
FIND_PACKAGE(BLAS REQUIRED)
FIND_PACKAGE(Boost 1.48.0 COMPONENTS random system filesystem program_options REQUIRED)
FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core imgproc highgui video)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core imgproc highgui video)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")
# Matlab
Expand Down
2 changes: 1 addition & 1 deletion faceDetectApp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ MESSAGE(STATUS "Configuring ${SUBPROJECT_NAME}:")
MESSAGE(STATUS "-------------------------------")

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui)
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion faceTrackingApp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

# find dependencies
FIND_PACKAGE(Boost 1.48.0 COMPONENTS random system filesystem program_options REQUIRED)
FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core imgproc highgui)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core imgproc highgui)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")
# Matlab
Expand Down
2 changes: 1 addition & 1 deletion facemodelTracking/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MAJOR 0 )
SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui calib3d )
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui calib3d )
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion ffpDetectApp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MAJOR 0 )
SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui calib3d)
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui calib3d)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion ffpDetectAppExp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MAJOR 0 )
SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui calib3d)
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui calib3d)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion fitter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MAJOR 0 )
SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui calib3d )
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui calib3d )
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion frDbExp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ MESSAGE(STATUS "Configuring ${SUBPROJECT_NAME}:")
MESSAGE(STATUS "-------------------------------")

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui)
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion frDbTool/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ MESSAGE(STATUS "Configuring ${SUBPROJECT_NAME}:")
MESSAGE(STATUS "-------------------------------")

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui)
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion frRunCogExp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ MESSAGE(STATUS "Configuring ${SUBPROJECT_NAME}:")
MESSAGE(STATUS "-------------------------------")

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui)
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion generateSyntheticLandmarkDataKlaus/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )
MESSAGE(STATUS "=== Configuring ${SUBPROJECT_NAME} ===")

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui)
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion headTrackingApp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )
# find dependencies
FIND_PACKAGE(BLAS REQUIRED)
FIND_PACKAGE(Boost 1.48.0 COMPONENTS random system filesystem program_options REQUIRED)
FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core imgproc highgui video)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core imgproc highgui video)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")
# Matlab
Expand Down
2 changes: 1 addition & 1 deletion landmarkEvaluation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MAJOR 0 )
SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui objdetect features2d nonfree )
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui objdetect features2d nonfree )
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion landmarkVisualiser/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MAJOR 0 )
SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui calib3d )
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui calib3d )
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion libClassification/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ MESSAGE(STATUS "=== Configuring ${SUBPROJECT_NAME} ===")

# find dependencies
FIND_PACKAGE(Boost 1.48.0 REQUIRED)
FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")
#Matlab:
Expand Down
2 changes: 1 addition & 1 deletion libCondensation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

# find dependencies
FIND_PACKAGE(Boost 1.48.0 REQUIRED)
FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion libDetection/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ELSE(Boost_FOUND)
MESSAGE(FATAL_ERROR "Boost not found")
ENDIF()
# OpenCV:
FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion libImageIO/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ MESSAGE(STATUS "=== Configuring ${SUBPROJECT_NAME} ===")
# find dependencies
#FIND_PACKAGE(Boost 1.48.0 COMPONENTS filesystem REQUIRED) # Patrik: I think we need 'system' too, if the app doesn't link to it, ImageIO fails to link.
FIND_PACKAGE(Boost 1.48.0 REQUIRED) # We only want the headers in the lib?
FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")
IF(WITH_MSKINECT_SDK)
Expand Down
2 changes: 1 addition & 1 deletion libImageLogging/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ MESSAGE(STATUS "=== Configuring ${SUBPROJECT_NAME} ===")

# find dependencies
# OpenCV:
FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion libImageProcessing/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ MESSAGE(STATUS "=== Configuring ${SUBPROJECT_NAME} ===")
# find dependencies
FIND_PACKAGE(Boost 1.48.0 REQUIRED) # We only need the headers

FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core imgproc)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core imgproc)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion libLinear/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ MESSAGE(STATUS "=== Configuring ${SUBPROJECT_NAME} ===")

# find dependencies
FIND_PACKAGE(BLAS REQUIRED)
FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion libRender/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )
MESSAGE(STATUS "=== Configuring ${SUBPROJECT_NAME} ===")

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui)
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion libShapeModels/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

# find dependencies
FIND_PACKAGE(Boost 1.48.0 REQUIRED)
FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core calib3d features2d nonfree objdetect)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core calib3d features2d nonfree objdetect)

#IF(WIN32)
#FIND_PACKAGE (HDF5 NAMES hdf5) # puts it in Config-mode
Expand Down
2 changes: 1 addition & 1 deletion libSvm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )
MESSAGE(STATUS "=== Configuring ${SUBPROJECT_NAME} ===")

# find dependencies
FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion partiallyAdaptiveTrackingApp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

# find dependencies
FIND_PACKAGE(Boost 1.48.0 COMPONENTS random system filesystem program_options REQUIRED)
FIND_PACKAGE(OpenCV 2.3.1 REQUIRED core imgproc highgui)
FIND_PACKAGE(OpenCV 2.4.3 REQUIRED core imgproc highgui)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")
# Matlab
Expand Down
2 changes: 1 addition & 1 deletion patchConverter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MAJOR 0 )
SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui)
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion sdmTracking/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MAJOR 0 )
SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui objdetect features2d nonfree )
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui objdetect features2d nonfree )
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion sdmTraining/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MAJOR 0 )
SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui objdetect features2d nonfree )
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui objdetect features2d nonfree )
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down
2 changes: 1 addition & 1 deletion trackerAppERT/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SET( ${SUBPROJECT_NAME}_VERSION_MAJOR 0 )
SET( ${SUBPROJECT_NAME}_VERSION_MINOR 1 )

#OpenCV:
FIND_PACKAGE( OpenCV 2.3.1 REQUIRED core imgproc highgui)
FIND_PACKAGE( OpenCV 2.4.3 REQUIRED core imgproc highgui)
MESSAGE(STATUS "OpenCV include dir found at ${OpenCV_INCLUDE_DIRS}")
MESSAGE(STATUS "OpenCV lib dir found at ${OpenCV_LIB_DIR}")

Expand Down

0 comments on commit f114d36

Please sign in to comment.