Require less boost components (#1002)

This commit is contained in:
SergiySW 2018-08-24 18:49:48 +03:00 committed by Roy Keene
commit 880cb202e6
2 changed files with 2 additions and 2 deletions

View file

@ -120,7 +120,7 @@ if (BOOST_ROOT)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules")
endif ()
find_package (Boost 1.66.0 REQUIRED COMPONENTS date_time filesystem system log log_setup thread program_options regex chrono atomic)
find_package (Boost 1.66.0 REQUIRED COMPONENTS filesystem log thread program_options)
add_subdirectory(ed25519-donna)

View file

@ -7,7 +7,7 @@ bootstrapArgs=()
while getopts 'm' OPT; do
case "${OPT}" in
m)
bootstrapArgs+=('--with-libraries=atomic,chrono,thread,log,date_time,filesystem,program_options,regex')
bootstrapArgs+=('--with-libraries=thread,log,filesystem,program_options')
;;
esac
done