From 386d5a27ae39d946ec2bef4481e20620e39d6813 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Sat, 2 Nov 2019 12:49:20 -0700 Subject: [PATCH] Remove unused boost libraries --- conanfile.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/conanfile.py b/conanfile.py index 9683356b..04dda222 100644 --- a/conanfile.py +++ b/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):