From bf36a846de88ba39b82b36db6d59910aebbe4910 Mon Sep 17 00:00:00 2001 From: Davis King Date: Sun, 18 Dec 2016 23:35:25 -0500 Subject: [PATCH] Changed build order to see if it prevents travis from crashing. --- examples/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index a6433f42a..9cafe6771 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -43,16 +43,16 @@ ENDMACRO() # 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_on_images_ex) + add_example(dnn_metric_learning_ex) add_example(dnn_introduction_ex) add_example(dnn_introduction2_ex) add_example(dnn_inception_ex) - add_example(dnn_metric_learning_ex) - add_example(dnn_metric_learning_on_images_ex) - add_gui_example(dnn_imagenet_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