# # This is a CMake makefile. You can find the cmake utility and # information about it at http://www.cmake.org # # setting this makes CMake allow normal looking IF ELSE statements SET(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true) PROJECT(examples) # add the folder containing the dlib folder to the include path INCLUDE_DIRECTORIES(..) # There is a CMakeLists.txt file in the dlib source folder that tells cmake # how to build the dlib library. Tell cmake about that file. add_subdirectory(../dlib dlib_build) MACRO(add_example name) ADD_EXECUTABLE(${name} ${name}.cpp) TARGET_LINK_LIBRARIES(${name} dlib ) ENDMACRO() #here we apply our macros add_example(bayes_net_ex) add_example(bayes_net_from_disk_ex) add_example(bayes_net_gui_ex) add_example(compress_stream_ex) add_example(dir_nav_ex) add_example(file_to_code_ex) add_example(gui_api_ex) add_example(image_ex) add_example(kcentroid_ex) add_example(kkmeans_ex) add_example(krls_ex) add_example(logger_ex) add_example(logger_ex_2) add_example(matrix_ex) add_example(member_function_pointer_ex) add_example(mlp_ex) add_example(multithreaded_object_ex) add_example(pipe_ex) add_example(queue_ex) add_example(server_http_ex) add_example(sockets_ex) add_example(sockets_ex_2) add_example(sockstreambuf_ex) add_example(std_allocator_ex) add_example(svm_ex) add_example(threaded_object_ex) add_example(thread_function_ex) add_example(threads_ex) add_example(timer_ex) add_example(xml_parser_ex)