sapling/eden/fs/win/CMakeLists.txt
Puneet Kaushik d2c6eaff04 Remove old version of Windows TestMounts
Summary: We have merged the Windows version of test mount to the POSIX, which now work across platform. We can remove the older version now.

Reviewed By: simpkins

Differential Revision: D20955565

fbshipit-source-id: c68eef961d27e822e6408eba06876a4034e8f3d2
2020-04-24 08:33:27 -07:00

31 lines
726 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.
# The files in the eden/fs/win/mount and eden/fs/win/store directories
# have interlinked dependencies on each other, so they have to be combined into
# a single library.
file(GLOB CONFIG_SRCS "mount/*.cpp" "store/*.cpp" "mount/*.h" "store/*.h")
add_library(
eden_win STATIC
${CONFIG_SRCS}
)
target_link_libraries(
eden_win
PUBLIC
eden_inodes
eden_journal
eden_model
eden_store
eden_telemetry
eden_utils
eden_service_thrift_util
eden_win_utils
Folly::folly
ProjectedFS
cpptoml
)
add_subdirectory(utils)