From 3a7ad0f9d724e1b3ddf4e9477d71d905848ebf5b Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Fri, 27 Jun 2014 08:49:04 -0400 Subject: [PATCH] introduced BR_THIRDPARTY_APPS --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+), 0 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e394a4..360797c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -140,6 +140,11 @@ add_subdirectory(openbr) # Build applications add_subdirectory(app) +foreach(DIR ${BR_THIRDPARTY_APPS_DIR}) + get_filename_component(FNAME ${DIR} NAME) + # DIR could be out-of-tree so we must specify the build directory + add_subdirectory(${DIR} 3rdparty_apps/${FNAME}) +endforeach() # Build the documentation? option(BR_BUILD_DOCUMENTATION "Build Documentation (Requires doxygen and latex)") -- libgit2 0.21.4