sapling/eden/fs/fuse/CMakeLists.txt
Katie Mancini 1f44f4a882 move Synchronized
Summary:
Stack context:

To get a build setup for edencommon I picked an eden library to move over
to edencommon.

I picked process name cache. I would like to have this library in watchman
so that I can log spawning process command lines as well as client command
lines.

Diff:

process name cache depends on Synchronized so I am moving that over in this diff.

Reviewed By: chadaustin

Differential Revision: D34218021

fbshipit-source-id: 528e7b4b12476b33a294a342e6e4ee13c92c7361
2022-04-04 11:37:38 -07:00

24 lines
485 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 FUSE_SRCS "*.cpp")
add_library(
eden_fuse STATIC
${FUSE_SRCS}
)
target_link_libraries(
eden_fuse
PUBLIC
eden_fuse_privhelper
eden_inodes_inodenumber
eden_notifications
eden_request_context
eden_telemetry
Folly::folly
edencommon::utils
)
add_subdirectory(privhelper)