Remove unused boost libraries
This commit is contained in:
parent
8e617b1342
commit
386d5a27ae
21
conanfile.py
21
conanfile.py
@ -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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user