Remove unused boost libraries

This commit is contained in:
Sebastian Messmer 2019-11-02 12:49:20 -07:00 committed by Sebastian Messmer
parent 8e617b1342
commit 386d5a27ae
1 changed files with 21 additions and 0 deletions

View File

@ -9,6 +9,27 @@ class CryFSConan(ConanFile):
default_options = {
# Need to disable boost-math because that doesn't compile for some reason on CI
"boost:without_math": True,
"boost:without_wave": True,
"boost:without_container": True,
"boost:without_exception": True,
"boost:without_graph": True,
"boost:without_iostreams": True,
"boost:without_locale": True,
"boost:without_log": True,
"boost:without_random": True,
"boost:without_regex": True,
"boost:without_mpi": True,
"boost:without_serialization": True,
"boost:without_coroutine": True,
"boost:without_fiber": True,
"boost:without_context": True,
"boost:without_timer": True,
"boost:without_date_time": True,
"boost:without_atomic": True,
"boost:without_graph_parallel": True,
"boost:without_python": True,
"boost:without_test": True,
"boost:without_type_erasure": True,
}
def requirements(self):