From 897a2e7ef9ba8a33d2eab301efcd46c7784e0a2a Mon Sep 17 00:00:00 2001 From: Alexander Vieth Date: Tue, 16 Apr 2024 11:05:58 +0200 Subject: [PATCH] Update conanfile.py --- conanfile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conanfile.py b/conanfile.py index 351707b..32cbd6e 100644 --- a/conanfile.py +++ b/conanfile.py @@ -104,6 +104,9 @@ def generate(self): # Give the installation directory to CMake tc.variables["MV_INSTALL_DIR"] = self.install_dir + # Set some build options + tc.variables["MV_UNITY_BUILD"] = "ON" + tc.generate() def _configure_cmake(self):