sapling/eden/fs/fuse/CMakeLists.txt
Chad Austin fe64ec3874 use fb303 repo in open source build
Summary: Add a dependency from the eden open source build to the fb303 open source build and switch EdenServiceHandler to BaseService.

Reviewed By: simpkins

Differential Revision: D15528156

fbshipit-source-id: 2ca5c31dd9fcc9bac43fd399b27f33b6f2c5ebfc
2019-07-24 21:07:04 -07:00

23 lines
494 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 FUSE_SRCS "*.cpp")
add_library(
eden_fuse STATIC
${FUSE_SRCS}
privhelper/PrivHelper.cpp
privhelper/PrivHelperConn.cpp
privhelper/PrivHelperServer.cpp
privhelper/UserInfo.cpp
)
target_link_libraries(
eden_fuse
PUBLIC
eden_fuse_privhelper
Folly::folly
)
add_subdirectory(privhelper)