Skip to content

Commit

Permalink
Fix 'use_rmm' Conan option on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed May 22, 2023
1 parent b98388c commit 1411872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def generate(self):
tc.cache_variables["BUILD_UNIT_TESTS"] = self._with_unit_tests
tc.cache_variables["BUILD_EXAMPLES"] = False
tc.cache_variables["BUILD_PYTHON_MODULE"] = False
tc.cache_variables["USE_RMM"] = self.options.use_rmm
tc.cache_variables["USE_RMM"] = self.options.get_safe("use_rmm", False)
for module in MODULES:
tc.cache_variables[f"BUILD_cupoch_{module}"] = module in self._enabled_modules
tc.generate()
Expand Down

0 comments on commit 1411872

Please sign in to comment.