1
+ #####
2
+ # WINDOWS USERS: The easiest way to make cmake find boost/Eigen/OpenCV is to provide
3
+ # all of the paths to library and include dirs here.
4
+ #
5
+ # If anyone knows how to make this work please let me know :)
6
+ #
7
+ #MESSAGE(STATUS "CMAKE_SYSTEM_NAME=${CMAKE_SYSTEM_NAME}")
8
+ IF (WIN32 ) # (${CMAKE_SYSTEM_NAME} MATCHES "Windows")
9
+ MESSAGE (STATUS "The easiest way to make cmake find boost/Eigen/OpenCV is to provide all of the paths to library and include dirs here (NB use FORWARD SLASHES)." )
10
+
11
+ set (Boost_INCLUDE_DIR "G:/Users/Tom Botterill/Documents/lib/boost_1_55_0" )
12
+ set (OpenCV_INCLUDE_DIR "G:/Users/Tom Botterill/Documents/lib/opencv/opencv/build/include" )
13
+ set (EIGEN3_INCLUDE_DIR "G:/Users/Tom Botterill/Documents/lib/eigen" )
14
+ set (Boost_LIBRARY_DIRS "G:/Users/Tom Botterill/Documents/lib/boost_1_55_0/stage/lib" )
15
+ set (OpenCV_LIBRARIES "G:/Users/Tom Botterill/Documents/lib/opencv/opencv/build/x64/vc12/lib" )
16
+ endif ()
17
+
18
+ ######################
19
+
20
+
1
21
cmake_minimum_required (VERSION 2.6)
2
22
project (tom-cv)
3
23
@@ -33,14 +53,21 @@ endif()
33
53
34
54
set (LIBRARY_OUTPUT_PATH "../${CMAKE_BUILD_TYPE} " )
35
55
36
- find_package (Boost 1.54.0 REQUIRED COMPONENTS system filesystem thread)
56
+
57
+ IF (NOT Boost_INCLUDE_DIR)
58
+ find_package (Boost 1.54.0 REQUIRED COMPONENTS system filesystem thread)
59
+ ENDIF ()
60
+
37
61
include_directories (SYSTEM ${Boost_INCLUDE_DIR} )
38
62
message (STATUS "boost include dir= ${Boost_INCLUDE_DIR} " )
39
63
40
64
#############
41
65
42
66
set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ./cmake)
43
- find_package (OpenCV 2.4 REQUIRED COMPONENTS opencv_core opencv_highgui opencv_imgproc opencv_legacy opencv_ml opencv_calib3d)
67
+
68
+ IF (NOT OpenCV_INCLUDE_DIR)
69
+ find_package (OpenCV 2.4 REQUIRED COMPONENTS opencv_core opencv_highgui opencv_imgproc opencv_legacy opencv_ml opencv_calib3d)
70
+ endif ()
44
71
45
72
message (STATUS "opencv include dir= ${OpenCV_INCLUDE_DIR} " )
46
73
message (STATUS "opencv root dir+include= ${OpenCV_ROOT_DIR} /include" )
@@ -52,8 +79,9 @@ include_directories(SYSTEM ${OpenCV_INCLUDE_DIR})
52
79
include_directories (SYSTEM "${OpenCV_ROOT_DIR} /include" )
53
80
54
81
#############
55
-
56
- FIND_PACKAGE (Eigen3 3.1 REQUIRED)
82
+ IF (NOT EIGEN3_INCLUDE_DIR)
83
+ FIND_PACKAGE (Eigen3 3.1 REQUIRED)
84
+ ENDIF ()
57
85
58
86
message (STATUS "Eigen3 include dir= ${EIGEN3_INCLUDE_DIR} " )
59
87
@@ -78,48 +106,49 @@ add_subdirectory(image)
78
106
add_subdirectory (imageSource)
79
107
80
108
################################################### set up libraries to link to
109
+ IF (NOT ${CMAKE_SYSTEM_NAME} MATCHES "Windows" )
81
110
82
- link_libraries (featureExtract)
111
+ link_libraries (featureExtract)
83
112
84
- link_libraries (imageSource)
113
+ link_libraries (imageSource)
85
114
86
- link_libraries (params)
87
- link_libraries (logging)
88
- link_libraries (ransac)
89
- link_libraries (bagOfWords)
90
- link_libraries (bowSpeedometer)
91
- link_libraries (featureDescription)
92
- link_libraries (featureMatching)
93
- link_libraries (image)
115
+ link_libraries (params)
116
+ link_libraries (logging)
117
+ link_libraries (ransac)
118
+ link_libraries (bagOfWords)
119
+ link_libraries (bowSpeedometer)
120
+ link_libraries (featureDescription)
121
+ link_libraries (featureMatching)
122
+ link_libraries (image)
94
123
95
- link_libraries (${Boost_LIBRARIES} )
96
- link_libraries (opencv_core)
97
- link_libraries (opencv_imgproc)
98
- link_libraries (opencv_calib3d)
99
- link_libraries (opencv_highgui)
100
- link_libraries (opencv_features2d)
101
- link_libraries (opencv_legacy)
124
+ link_libraries (${Boost_LIBRARIES} )
125
+ link_libraries (opencv_core)
126
+ link_libraries (opencv_imgproc)
127
+ link_libraries (opencv_calib3d)
128
+ link_libraries (opencv_highgui)
129
+ link_libraries (opencv_features2d)
130
+ link_libraries (opencv_legacy)
102
131
103
132
104
- link_libraries (cameraGeom)
105
- link_libraries (timing)
133
+ link_libraries (cameraGeom)
134
+ link_libraries (timing)
106
135
107
136
108
137
109
- link_libraries (util)
138
+ link_libraries (util)
110
139
111
- link_libraries (png)
112
- link_libraries (jpeg)
140
+ link_libraries (png)
141
+ link_libraries (jpeg)
113
142
114
143
115
144
################################################### build the example programs
116
145
117
- add_subdirectory (ransacTest)
118
- add_subdirectory (ransacAndRefine)
119
- add_subdirectory (bowExample)
120
-
121
- add_subdirectory (mosaicing)
122
- add_subdirectory (BoWSLAM)
123
- add_subdirectory (ShowIm) # needed for BoWSLAM
146
+ add_subdirectory (ransacTest)
147
+ add_subdirectory (ransacAndRefine)
148
+ add_subdirectory (bowExample)
124
149
150
+ add_subdirectory (mosaicing)
151
+ add_subdirectory (BoWSLAM)
152
+ add_subdirectory (ShowIm) # needed for BoWSLAM
125
153
154
+ ENDIF ()
0 commit comments