aboutsummaryrefslogtreecommitdiff
path: root/conanfile.py
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2023-09-05 13:48:00 +0200
committerFelix Morgner <felix.morgner@gmail.com>2023-09-05 13:48:00 +0200
commit6499fd8d84f7517286e741a4e9e94551fe2711b7 (patch)
tree4e8539f19be30d08ece693c46428e24244374784 /conanfile.py
parentab8bebe0569769df461c43e02b3851db3f2fc696 (diff)
downloadwanda-6499fd8d84f7517286e741a4e9e94551fe2711b7.tar.xz
wanda-6499fd8d84f7517286e741a4e9e94551fe2711b7.zip
deps: switch boost and fmt to header only variant
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/conanfile.py b/conanfile.py
index bd1aa84..2aae993 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -43,6 +43,8 @@ class Wanda(ConanFile):
cmake.build()
def configure(self):
+ self.options["boost"].header_only = True
+ self.options["fmt"].header_only = True
self.options["spdlog"].header_only = True
def generate(self):