Skip to content

Commit f858b08

Browse files
committed
Use lexy from conan
1 parent 7402040 commit f858b08

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

conanfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@ def requirements(self):
2222
self.requires("sqlite3/3.40.1") # This should be a transitive dependency of cpp-sqlite
2323
self.requires("tinyxml2/10.0.0")
2424
self.requires("cppzmq/4.11.0")
25+
self.requires("foonathan-lexy/2022.12.1")
2526

2627
def generate(self):
2728
tc = CMakeToolchain(self)
2829

2930
#tc.cache_variables["USE_VENDORED_CPPSQLITE"] = False
3031
tc.cache_variables["USE_VENDORED_CPPZMQ"] = False
3132
tc.cache_variables["USE_VENDORED_FLATBUFFERS"] = False
32-
#tc.cache_variables["USE_VENDORED_LEXY"] = False
33+
tc.cache_variables["USE_VENDORED_LEXY"] = False
3334
tc.cache_variables["USE_VENDORED_MINICORO"] = False
3435
tc.cache_variables["USE_VENDORED_MINITRACE"] = False
3536
tc.cache_variables["USE_VENDORED_TINYXML2"] = False

0 commit comments

Comments
 (0)