From a7c8777d6254d77fbdf55226237d44cad77fc2ce Mon Sep 17 00:00:00 2001 From: ML-Enthusiast Date: Fri, 21 Jun 2019 14:02:49 -0400 Subject: [PATCH] remove unnecessary files --- SuperBuild/External_Boost_buildboost.cmake | 20 ----------------- .../External_Boost_configureboost.cmake | 22 ------------------- 2 files changed, 42 deletions(-) delete mode 100644 SuperBuild/External_Boost_buildboost.cmake delete mode 100644 SuperBuild/External_Boost_configureboost.cmake diff --git a/SuperBuild/External_Boost_buildboost.cmake b/SuperBuild/External_Boost_buildboost.cmake deleted file mode 100644 index d08e793..0000000 --- a/SuperBuild/External_Boost_buildboost.cmake +++ /dev/null @@ -1,20 +0,0 @@ -# -# Follow the boost suggestions -# - -if(WIN32) - - execute_process(COMMAND ./b2 install --prefix=${BOOST_INSTALL_DIR} - --without-atomic --without-chrono --without-context --without-date_time --without-exception --without-filesystem --without-graph --without-graph_parallel --without-iostreams --without-locale --without-log --without-math --without-mpi --without-program_options --without-python --without-random --without-regex --without-serialization --without-signals - --without-test --without-timer --without-wave -# Needed for UKF --without-system --without-thread - WORKING_DIRECTORY ${BUILD_DIR} RESULT_VARIABLE build_result) - -else() - - execute_process(COMMAND ./b2 install - WORKING_DIRECTORY ${BUILD_DIR} RESULT_VARIABLE build_result) - -endif() - -return(${build_result}) diff --git a/SuperBuild/External_Boost_configureboost.cmake b/SuperBuild/External_Boost_configureboost.cmake deleted file mode 100644 index bb81d6f..0000000 --- a/SuperBuild/External_Boost_configureboost.cmake +++ /dev/null @@ -1,22 +0,0 @@ -# -# Follow the boost suggestions -# - -if(WIN32) # bootstrap.bat has no options, the options are given to ./b2 when BUILDING: see buildboost.cmake - - execute_process(COMMAND bootstrap.bat - WORKING_DIRECTORY ${BUILD_DIR} RESULT_VARIABLE boostrap_result) - -else() - - execute_process(COMMAND ./bootstrap.sh --prefix=${BOOST_INSTALL_DIR} - --without-libraries=atomic,chrono,context,date_time,exception,filesystem,graph,graph_parallel,iostreams,locale,log,math,mpi,program_options,python,random,regex,serialization,signals,test,timer,wave -## Needed for UKF system,thread, - WORKING_DIRECTORY ${BUILD_DIR} RESULT_VARIABLE boostrap_result) -### NOTE: --with-libraries= is purposefull left blank to avoid building -### any of the unnecessary boost libraries. ANTS only needs -### the header-only components of boost! - -endif() - -return(${bootstrap_result})