# # This is a CMake makefile. You can find the cmake utility and # information about it at http://www.cmake.org # cmake_minimum_required(VERSION 2.8.12) PROJECT(examples) # SET(dlib_DIR C:\\Users\\Vaibhaw Chandel\\programming\\dlib-19.4\\build\\install\\lib\\cmake\\dlib) find_package(dlib REQUIRED) include_directories( ${dlib_INCLUDE_DIRS} ) # Tell CMake to compile a program. 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 each example consists of only one .cpp file but # in general you will make programs that const of many .cpp files. ADD_EXECUTABLE(assignment_learning_ex assignment_learning_ex.cpp) # Then we tell it to link with dlib. TARGET_LINK_LIBRARIES(assignment_learning_ex ${dlib_LIBS}) # 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. MACRO(add_example name) ADD_EXECUTABLE(${name} ${name}.cpp) TARGET_LINK_LIBRARIES(${name} ${dlib_LIBS} ) ENDMACRO() # if an example requires GUI, call this macro to check DLIB_NO_GUI_SUPPORT to include or exclude MACRO(add_gui_example name) if (DLIB_NO_GUI_SUPPORT) message("No GUI support, so we won't build the ${name} example.") else() add_example(${name}) endif() ENDMACRO() # 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) add_example(dnn_metric_learning_ex) add_gui_example(dnn_face_recognition_ex) add_example(dnn_introduction_ex) add_example(dnn_introduction2_ex) add_example(dnn_inception_ex) add_gui_example(dnn_mmod_ex) add_gui_example(dnn_mmod_face_detection_ex) add_gui_example(random_cropper_ex) add_gui_example(dnn_mmod_dog_hipsterizer) add_gui_example(dnn_imagenet_ex) if (NOT MSVC) # Don't try to compile this program using Visual Studio since it causes the # compiler to run out of RAM and to crash. Maybe someday Visual Studio # won't be broken :( add_example(dnn_imagenet_train_ex) add_example(dnn_metric_learning_on_images_ex) endif() endif() #here we apply our macros add_gui_example(3d_point_cloud_ex) add_example(bayes_net_ex) add_example(bayes_net_from_disk_ex) add_gui_example(bayes_net_gui_ex) add_example(bridge_ex) add_example(bsp_ex) add_example(compress_stream_ex) add_example(config_reader_ex) add_example(custom_trainer_ex) add_example(dir_nav_ex) add_example(empirical_kernel_map_ex) 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) add_example(file_to_code_ex) add_example(graph_labeling_ex) add_gui_example(gui_api_ex) add_gui_example(hough_transform_ex) add_gui_example(image_ex) add_example(integrate_function_adapt_simp_ex) add_example(iosockstream_ex) add_example(kcentroid_ex) add_example(kkmeans_ex) add_example(krls_ex) add_example(krls_filter_ex) add_example(krr_classification_ex) add_example(krr_regression_ex) add_example(learning_to_track_ex) add_example(least_squares_ex) add_example(linear_manifold_regularizer_ex) add_example(logger_custom_output_ex) add_example(logger_ex) add_example(logger_ex_2) add_example(matrix_ex) add_example(matrix_expressions_ex) add_example(max_cost_assignment_ex) add_example(member_function_pointer_ex) add_example(mlp_ex) add_example(model_selection_ex) add_gui_example(mpc_ex) add_example(multiclass_classification_ex) add_example(multithreaded_object_ex) add_gui_example(object_detector_advanced_ex) add_gui_example(object_detector_ex) add_gui_example(one_class_classifiers_ex) add_example(optimization_ex) add_example(parallel_for_ex) add_example(pipe_ex) add_example(pipe_ex_2) add_example(quantum_computing_ex) add_example(queue_ex) add_example(rank_features_ex) add_example(running_stats_ex) add_example(rvm_ex) add_example(rvm_regression_ex) add_example(sequence_labeler_ex) add_example(sequence_segmenter_ex) add_example(server_http_ex) add_example(server_iostream_ex) add_example(sockets_ex) add_example(sockstreambuf_ex) add_example(std_allocator_ex) add_gui_example(surf_ex) add_example(svm_c_ex) add_example(svm_ex) add_example(svm_pegasos_ex) add_example(svm_rank_ex) add_example(svm_sparse_ex) add_example(svm_struct_ex) add_example(svr_ex) add_example(thread_function_ex) add_example(thread_pool_ex) add_example(threaded_object_ex) add_example(threads_ex) add_example(timer_ex) add_gui_example(train_object_detector) add_example(train_shape_predictor_ex) add_example(using_custom_kernels_ex) add_gui_example(video_tracking_ex) add_example(xml_parser_ex) 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() if (DLIB_LINK_WITH_SQLITE3) add_example(sqlite_ex) endif()