From 75673e28f1e569d4fe0e055abdee6a7c3226a4ab Mon Sep 17 00:00:00 2001 From: Alex Cunningham Date: Mon, 21 May 2012 20:21:09 +0000 Subject: [PATCH] Disabled unstable discrete examples bacause they don't build currently --- gtsam_unstable/discrete/CMakeLists.txt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gtsam_unstable/discrete/CMakeLists.txt b/gtsam_unstable/discrete/CMakeLists.txt index 25a6a214b..3ba34d12b 100644 --- a/gtsam_unstable/discrete/CMakeLists.txt +++ b/gtsam_unstable/discrete/CMakeLists.txt @@ -24,9 +24,14 @@ set (discrete_excluded_tests # Add all tests gtsam_add_subdir_tests(discrete_unstable "${discrete_local_libs}" "${discrete_full_libs}" "${discrete_excluded_tests}") -# add examples +# List examples to build - comment out here to exclude from compilation +set(discrete_unstable_examples +#schedulingExample +#schedulingQuals12 +) + if (GTSAM_BUILD_EXAMPLES) - foreach(example schedulingExample schedulingQuals12) + foreach(example ${discrete_unstable_examples}) add_executable(${example} "examples/${example}.cpp") # Disable building during make all/install