sapling/eden/fs/model/CMakeLists.txt
Rajiv Sharma 32a53eff54 Back out "Back out "[eden] Generalize Hash and add Hash32""
Summary: Backing out the revert of D44173515 to unblock RE with their development. I will revert my own diff instead.

Reviewed By: genevievehelsel

Differential Revision: D45190063

fbshipit-source-id: 2b14fdc2fa118719aed0f3215393d172a162639f
2023-04-22 07:14:52 -07:00

22 lines
427 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 MODEL_SRCS "*.cpp")
add_library(
eden_model STATIC
${MODEL_SRCS}
)
target_link_libraries(
eden_model
PUBLIC
eden_digest
eden_utils
Folly::folly
edencommon::edencommon_utils
)
add_subdirectory(git)
add_subdirectory(test)