From a34730cf8c023d08686257ac13502887b6ca0a31 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Thu, 13 Feb 2020 23:18:11 +0100 Subject: [PATCH] Subfolders reordered in CMake to help diagnose lack of testing dependencies --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 93d850e5..01167678 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,9 +42,9 @@ set_warnings(TREAT_AS_ERRORS) # add project code add_subdirectory(src) -# add usage example -add_subdirectory(example) - # add unit tests enable_testing() add_subdirectory(test) + +# add usage example +add_subdirectory(example)