We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b24e90a commit 1b3287fCopy full SHA for 1b3287f
recipes/mpt-crypto/all/conanfile.py
@@ -14,12 +14,12 @@ class MptCryptoConan(ConanFile):
14
options = {
15
"shared": [True, False],
16
"fPIC": [True, False],
17
- "with_tests": [True, False],
+ "tests": [True, False],
18
}
19
default_options = {
20
"shared": False,
21
"fPIC": True,
22
- "with_tests": False,
+ "tests": False,
23
24
25
requires = [
@@ -40,7 +40,7 @@ def layout(self):
40
41
def generate(self):
42
tc = CMakeToolchain(self)
43
- tc.variables["ENABLE_TESTS"] = self.options.with_tests
+ tc.variables["ENABLE_TESTS"] = self.options.tests
44
tc.generate()
45
46
deps = CMakeDeps(self)
0 commit comments