CMakeLists.txt 9.57 KB
Newer Older
1
#
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#  _______ _    _ _____  _____     _____  _____                 
# |__   __| |  | |_   _|/ ____|   |_   _|/ ____|       /\       
#    | |  | |__| | | | | (___       | | | (___        /  \      
#    | |  |  __  | | |  \___ \      | |  \___ \      / /\ \     
#    | |  | |  | |_| |_ ____) |    _| |_ ____) |    / ____ \    
#    |_|__|_|_ |_|_____|_____/__  |_____|_____/    /_/  _ \_\   
#   |__   __| |  | |__   __/ __ \|  __ \|_   _|   /\   | |      
#      | |  | |  | |  | | | |  | | |__) | | |    /  \  | |      
#      | |  | |  | |  | | | |  | |  _  /  | |   / /\ \ | |      
#      | |  | |__| |  | | | |__| | | \ \ _| |_ / ____ \| |____  
#      |_|   \____/   |_|  \____/|_|  \_\_____/_/    \_\______| 
#
#
#    _____  ______          _____      _______ _    _ ______       
#   |  __ \|  ____|   /\   |  __ \    |__   __| |  | |  ____|      
#   | |__) | |__     /  \  | |  | |      | |  | |__| | |__         
#   |  _  /|  __|   / /\ \ | |  | |      | |  |  __  |  __|        
#   | | \ \| |____ / ____ \| |__| |      | |  | |  | | |____       
#   |_|__\_\______/_/_ __\_\_____/__ _   |_|__|_|_ |_|______|_ _ _ 
#  / ____/ __ \|  \/  |  \/  |  ____| \ | |__   __/ ____| | | | | |
# | |   | |  | | \  / | \  / | |__  |  \| |  | | | (___   | | | | |
# | |   | |  | | |\/| | |\/| |  __| | . ` |  | |  \___ \  | | | | |
# | |___| |__| | |  | | |  | | |____| |\  |  | |  ____) | |_|_|_|_|
#  \_____\____/|_|  |_|_|  |_|______|_| \_|  |_| |_____/  (_|_|_|_)
#                                                                  
#
#
# This is a CMake makefile.  CMake is a tool that helps you build C++ programs.
# You can download CMake from http://www.cmake.org.  This CMakeLists.txt file
# you are reading builds dlib's example programs. 
32
33
34
#


35
cmake_minimum_required(VERSION 2.8.12)
36
37
# Every project needs a name.  We call this the "examples" project.
project(examples)
38

39

40
41
# Tell cmake we will need dlib.  This command will pull in dlib and compile it
# into your project.  Note that you don't need to compile or install dlib.  All
Davis King's avatar
Davis King committed
42
# cmake needs is the dlib source code folder and it will take care of everything.
43
add_subdirectory(../dlib dlib_build)
44

45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62

# The next thing we need to do is tell CMake about the code you want to
# compile.  We do this with the add_executable() statement which takes the name
# of the output executable and then a list of .cpp files to compile.  Here we
# are going to compile one of the dlib example programs which has only one .cpp
# file, assignment_learning_ex.cpp.  If your program consisted of multiple .cpp
# files you would simply list them here in the add_executable() statement.  
add_executable(assignment_learning_ex assignment_learning_ex.cpp)
# Finally, you need to tell CMake that this program, assignment_learning_ex,
# depends on dlib.  You do that with this statement: 
target_link_libraries(assignment_learning_ex dlib::dlib)



# To compile this program all you need to do is ask cmake.  You would type
# these commands from within the directory containing this CMakeLists.txt
# file:
#   mkdir build
cclough's avatar
cclough committed
63
#   cd build
64
65
66
67
68
#   cmake ..
#   cmake --build . --config Release
#
# The cmake .. command looks in the parent folder for a file named
# CMakeLists.txt, reads it, sets up everything needed to build program.  Also,
Davis King's avatar
Davis King committed
69
# note that CMake can generate Visual Studio or XCode project files.  So
70
71
72
73
74
75
76
77
78
79
80
# if instead you had written:
#   mkdir build
#   cmake .. -G "Visual Studio 14 2015 Win64" ..
#
# You would be able to open the resulting visual studio project and compile and
# edit the example programs within the visual studio IDE.  CMake can generate a
# lot of different types of IDE projects.  Run the cmake -h command to see a list
# of arguments to -G to see what kinds of projects cmake can generate for you.
# It probably includes your favorite IDE in the list.


81
82


83
84
85
86
87
88
89
#################################################################################
#################################################################################
#  A CMakeLists.txt file can compile more than just one program.  So below we
#  tell it to compile the other dlib example programs using pretty much the
#  same CMake commands we used above.
#################################################################################
#################################################################################
90
91
92
93
94


# Since there are a lot of examples I'm going to use a macro to simply this
# CMakeLists.txt file.  However, usually you will create only one executable in
# your cmake projects and use the syntax shown above.
95
96
97
98
macro(add_example name)
   add_executable(${name} ${name}.cpp)
   target_link_libraries(${name} dlib::dlib )
endmacro()
99

100
# if an example requires GUI, call this macro to check DLIB_NO_GUI_SUPPORT to include or exclude
101
macro(add_gui_example name)
102
103
104
105
106
   if (DLIB_NO_GUI_SUPPORT)
      message("No GUI support, so we won't build the ${name} example.")
   else()
      add_example(${name})
   endif()
107
endmacro()
108

109
110
111
112
113
# The deep learning toolkit requires a compiler with essentially complete C++11
# support.  However, versions of Visual Studio prior to October 2016 didn't
# provide enough C++11 support to compile the DNN tooling, but were good enough
# to compile the rest of dlib.  
if (NOT USING_OLD_VISUAL_STUDIO_COMPILER)
114
   add_example(dnn_metric_learning_ex)
115
   add_gui_example(dnn_face_recognition_ex)
Davis King's avatar
Davis King committed
116
117
   add_example(dnn_introduction_ex)
   add_example(dnn_introduction2_ex)
Fm's avatar
Fm committed
118
   add_example(dnn_inception_ex)
119
   add_gui_example(dnn_mmod_ex)
120
   add_gui_example(dnn_mmod_face_detection_ex)
121
   add_gui_example(random_cropper_ex)
122
   add_gui_example(dnn_mmod_dog_hipsterizer)
123
   add_gui_example(dnn_imagenet_ex)
124
   add_gui_example(dnn_mmod_find_cars_ex)
Davis King's avatar
Davis King committed
125
   add_gui_example(dnn_mmod_find_cars2_ex)
126
   add_example(dnn_mmod_train_find_cars_ex)
127
   add_gui_example(dnn_semantic_segmentation_ex)
128
129
   add_example(dnn_imagenet_train_ex)
   add_example(dnn_metric_learning_on_images_ex)
130
   if (NOT MSVC)
Davis King's avatar
Davis King committed
131
      # Don't try to compile these programs using Visual Studio since it causes the
132
133
      # compiler to run out of RAM and to crash.  Maybe someday Visual Studio
      # won't be broken :(
134
135
136
137
138
139
140
141
      # (NB: While the 32-bit VC++ compiler launched by the Visual Studio IDE will
      #  run out of memory, running a 64-bit MSBuild.exe on the Command Prompt
      #  seems to work fine. So you can try something like this:
      #  "C:\Program Files (x86)\MSBuild\14.0\Bin\amd64\MSBuild.exe" C:\path\to\examples.sln /p:Configuration=Release /p:Platform=x64 /t:dnn_imagenet_train_ex
      #  Note that you may additionally need to set Debug Information Format to
      #  C7 compatible (/Z7), in case you get compiler error "cannot update
      #  program database".)
      add_example(dnn_semantic_segmentation_train_ex)
142
   endif()
Davis King's avatar
Davis King committed
143
endif()
144

145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161

if (DLIB_NO_GUI_SUPPORT)
   message("No GUI support, so we won't build the webcam_face_pose_ex example.")
else()
   find_package(OpenCV QUIET)
   if (OpenCV_FOUND)
      include_directories(${OpenCV_INCLUDE_DIRS})

      add_executable(webcam_face_pose_ex webcam_face_pose_ex.cpp)
      target_link_libraries(webcam_face_pose_ex dlib::dlib ${OpenCV_LIBS} )
   else()
      message("OpenCV not found, so we won't build the webcam_face_pose_ex example.")
   endif()
endif()



162
#here we apply our macros 
163
add_gui_example(3d_point_cloud_ex)
164
165
add_example(bayes_net_ex)
add_example(bayes_net_from_disk_ex)
166
add_gui_example(bayes_net_gui_ex)
167
add_example(bridge_ex)
Davis King's avatar
Davis King committed
168
add_example(bsp_ex)
169
add_example(compress_stream_ex)
170
add_example(config_reader_ex)
171
add_example(custom_trainer_ex)
172
add_example(dir_nav_ex)
173
add_example(empirical_kernel_map_ex)
174
175
176
177
add_gui_example(face_detection_ex)
add_gui_example(face_landmark_detection_ex)
add_gui_example(fhog_ex)
add_gui_example(fhog_object_detector_ex)
178
add_example(file_to_code_ex)
179
add_example(graph_labeling_ex)
180
181
182
add_gui_example(gui_api_ex)
add_gui_example(hough_transform_ex)
add_gui_example(image_ex)
Davis King's avatar
Davis King committed
183
add_example(integrate_function_adapt_simp_ex)
184
add_example(iosockstream_ex)
Davis King's avatar
Davis King committed
185
add_example(kcentroid_ex)
186
add_example(kkmeans_ex)
Davis King's avatar
Davis King committed
187
add_example(krls_ex)
188
add_example(krls_filter_ex)
189
190
add_example(krr_classification_ex)
add_example(krr_regression_ex)
191
add_example(learning_to_track_ex)
192
add_example(least_squares_ex)
193
add_example(linear_manifold_regularizer_ex)
194
add_example(logger_custom_output_ex)
195
196
197
add_example(logger_ex)
add_example(logger_ex_2)
add_example(matrix_ex)
198
add_example(matrix_expressions_ex)
199
add_example(max_cost_assignment_ex)
200
201
add_example(member_function_pointer_ex)
add_example(mlp_ex)
202
add_example(model_selection_ex)
203
add_gui_example(mpc_ex)
204
add_example(multiclass_classification_ex)
205
add_example(multithreaded_object_ex)
206
207
208
add_gui_example(object_detector_advanced_ex)
add_gui_example(object_detector_ex)
add_gui_example(one_class_classifiers_ex)
Davis King's avatar
Davis King committed
209
add_example(optimization_ex)
210
add_example(parallel_for_ex)
211
add_example(pipe_ex)
212
add_example(pipe_ex_2)
Davis King's avatar
Davis King committed
213
add_example(quantum_computing_ex)
214
add_example(queue_ex)
Davis King's avatar
Davis King committed
215
add_example(rank_features_ex)
Davis King's avatar
Davis King committed
216
add_example(running_stats_ex)
Davis King's avatar
Davis King committed
217
add_example(rvm_ex)
Davis King's avatar
Davis King committed
218
add_example(rvm_regression_ex)
219
add_example(sequence_labeler_ex)
220
add_example(sequence_segmenter_ex)
221
add_example(server_http_ex)
222
add_example(server_iostream_ex)
223
224
225
add_example(sockets_ex)
add_example(sockstreambuf_ex)
add_example(std_allocator_ex)
226
add_gui_example(surf_ex)
227
add_example(svm_c_ex)
228
add_example(svm_ex)
229
add_example(svm_pegasos_ex)
230
add_example(svm_rank_ex)
Davis King's avatar
Davis King committed
231
add_example(svm_sparse_ex)
232
add_example(svm_struct_ex)
Davis King's avatar
Davis King committed
233
add_example(svr_ex)
234
add_example(thread_function_ex)
Davis King's avatar
Davis King committed
235
add_example(thread_pool_ex)
236
add_example(threaded_object_ex)
237
238
add_example(threads_ex)
add_example(timer_ex)
239
add_gui_example(train_object_detector)
240
add_example(train_shape_predictor_ex)
241
add_example(using_custom_kernels_ex)
242
add_gui_example(video_tracking_ex)
243
add_example(xml_parser_ex)
244
245


246
247
248
249
if (DLIB_LINK_WITH_SQLITE3)
   add_example(sqlite_ex)
endif()

250