From c9d7134f794e59456115d96db4fcd9a8a9809b8d Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Thu, 14 Nov 2024 13:22:16 -0800 Subject: [PATCH] build: wire in LMDB for IndexStoreDB dependency This adjusts the build configuration to allow the shared LMDB library build to be wired into the build. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e64d49017..c019448f9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,6 +17,7 @@ add_compile_options("$<$:SHELL:-enable-upcoming-feature find_package(dispatch QUIET) find_package(Foundation QUIET) find_package(TSC QUIET) +find_package(LMDB QUIET) find_package(IndexStoreDB QUIET) find_package(SwiftPM QUIET) find_package(LLBuild QUIET)