sapling/eden/fs/prjfs/CMakeLists.txt
Chad Austin f6fcff3151 move strace logging into FuseChannel
Summary:
Instead of logging in the Dispatcher, move strace logging to
FuseChannel where it can be standardized for all FUSE request types.

Reviewed By: wez

Differential Revision: D24035838

fbshipit-source-id: c84d8c27b62f9944e2d26a35a7ed7bbbeeb5bf0e
2020-10-20 09:34:03 -07:00

30 lines
573 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.
if (WIN32)
file(GLOB PRJFS_SRCS "*.cpp" "*.h")
add_library(
eden_prjfs STATIC
${PRJFS_SRCS}
)
target_link_libraries(
eden_prjfs
PUBLIC
eden_request_context
eden_inodes_inodenumber
eden_journal
eden_model
eden_store
eden_telemetry
eden_utils
eden_service_thrift_util
Folly::folly
ProjectedFS
cpptoml
)
endif()