From 34a2241bb59b7c929d6dd7a2e84a96fa5a88e79e Mon Sep 17 00:00:00 2001 From: Paul Sutton Date: Tue, 17 Jun 2014 15:28:29 +0100 Subject: [PATCH] Changing order of ADD_SUBDIRECTORY to ensure cuhd is built before lte --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 344c5bd08..c8f92b065 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -156,7 +156,7 @@ INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/graphics/include) # Add the subdirectories ######################################################################## ADD_SUBDIRECTORY(common) -ADD_SUBDIRECTORY(lte) ADD_SUBDIRECTORY(cuhd) ADD_SUBDIRECTORY(graphics) +ADD_SUBDIRECTORY(lte)