sapling/eden/fs/store/recas/CMakeLists.txt
Yipu Miao 10dd235a48 creating RE CAS backing store with everything unimplemented.
Summary: Create a RE-CAS backing store with all APIs unimplemented, and Linux only.

Reviewed By: chadaustin

Differential Revision: D27771047

fbshipit-source-id: de00c6e290f924872eae7290b1945e6b3f40d610
2021-04-28 14:59:39 -07:00

21 lines
405 B
CMake

# Copyright (c) Facebook, Inc. and its affiliates.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2.
file(GLOB STORE_RE_CAS_SRCS "*.cpp")
add_library(
eden_store_recas STATIC
${STORE_RE_CAS_SRCS}
)
target_link_libraries(
eden_store_recas
PUBLIC
backingstore
eden_store
)
if (NOT WIN32)
add_subdirectory(test)
endif()