aboutsummaryrefslogtreecommitdiff
path: root/conanfile.py
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2023-09-05 13:13:29 +0200
committerFelix Morgner <felix.morgner@gmail.com>2023-09-05 13:13:29 +0200
commitab8bebe0569769df461c43e02b3851db3f2fc696 (patch)
treed692b1f1e424eca1b308ed296922fb46d6f516e1 /conanfile.py
parent386cb39b93d403e98c9a7d57899a5641ae4bffd0 (diff)
downloadwanda-ab8bebe0569769df461c43e02b3851db3f2fc696.tar.xz
wanda-ab8bebe0569769df461c43e02b3851db3f2fc696.zip
deps: switch spdlog to header-only variant
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/conanfile.py b/conanfile.py
index 8926d87..bd1aa84 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -42,6 +42,9 @@ class Wanda(ConanFile):
cmake.configure()
cmake.build()
+ def configure(self):
+ self.options["spdlog"].header_only = True
+
def generate(self):
toolchain = CMakeToolchain(self)
toolchain.variables["CMAKE_EXPORT_COMPILE_COMMANDS"] = True