We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7402040 commit f858b08Copy full SHA for f858b08
1 file changed
conanfile.py
@@ -22,14 +22,15 @@ def requirements(self):
22
self.requires("sqlite3/3.40.1") # This should be a transitive dependency of cpp-sqlite
23
self.requires("tinyxml2/10.0.0")
24
self.requires("cppzmq/4.11.0")
25
+ self.requires("foonathan-lexy/2022.12.1")
26
27
def generate(self):
28
tc = CMakeToolchain(self)
29
30
#tc.cache_variables["USE_VENDORED_CPPSQLITE"] = False
31
tc.cache_variables["USE_VENDORED_CPPZMQ"] = False
32
tc.cache_variables["USE_VENDORED_FLATBUFFERS"] = False
- #tc.cache_variables["USE_VENDORED_LEXY"] = False
33
+ tc.cache_variables["USE_VENDORED_LEXY"] = False
34
tc.cache_variables["USE_VENDORED_MINICORO"] = False
35
tc.cache_variables["USE_VENDORED_MINITRACE"] = False
36
tc.cache_variables["USE_VENDORED_TINYXML2"] = False
0 commit comments