sapling/eden/fs/lmdb/CMakeLists.txt
Genevieve (Genna) Helsel 4f8e90b558 LMDBInodeCatalog + LMDBFileContentStore
Summary:
X-link: https://github.com/facebookincubator/velox/pull/7542

ties all of the pieces together. The bulk of the net-new logic is in `OverlayFile`, with the LMDB stuff being ported from other implementations or just delegating calls to other classes.

Reviewed By: kmancini

Differential Revision: D46914322

fbshipit-source-id: 3434b71c92ece6b94a3c08828df286b04152d50f
2023-11-13 12:47:14 -08:00

24 lines
426 B
CMake

# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2.
file(GLOB LMDB_SRCS "*.cpp")
add_library(
eden_lmdb STATIC
${LMDB_SRCS}
)
target_include_directories(
eden_lmdb
PUBLIC
${LMDB_INCLUDE_DIR}
)
target_link_libraries(
eden_lmdb
PUBLIC
eden_utils
Folly::folly
${LMDB_LIBRARIES}
)