From 5e12794467cab988038fcbd75d371d44c76b91ec Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Sun, 29 Jun 2014 01:29:09 +0900 Subject: [PATCH] sort contrib libraries before include them --- contrib/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/CMakeLists.txt b/contrib/CMakeLists.txt index 2a25b8b8..2487f0d0 100644 --- a/contrib/CMakeLists.txt +++ b/contrib/CMakeLists.txt @@ -1,4 +1,5 @@ file(GLOB CONTRIBS ${PROJECT_SOURCE_DIR}/contrib/*/CMakeLists.txt) +list(SORT CONTRIBS) foreach(contrib ${CONTRIBS}) include(${contrib}) endforeach()