https://git.reactos.org/?p=reactos.git;a=commitdiff;h=1383fb0514700b318839d…
commit 1383fb0514700b318839da0eee626ef125d06631
Author:     Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Thu Aug 30 22:54:49 2018 +0200
Commit:     Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Thu Aug 30 22:54:49 2018 +0200
    [MODULES] Order the cmake inclusions alphabetically as we're used to everywhere
else.
---
 modules/CMakeLists.txt | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/CMakeLists.txt b/modules/CMakeLists.txt
index e09868d033..78123b6aed 100644
--- a/modules/CMakeLists.txt
+++ b/modules/CMakeLists.txt
@@ -1,12 +1,12 @@
-if(ENABLE_ROSTESTS)
-    add_subdirectory(rostests)
-endif()
-
 if(ENABLE_ROSAPPS)
     add_subdirectory(rosapps)
 endif()
+if(ENABLE_ROSTESTS)
+    add_subdirectory(rostests)
+endif()
+
 if(ENABLE_WALLPAPERS)
     add_subdirectory(wallpapers)
 endif()