sapling/eden/fs/fuse/CMakeLists.txt

24 lines
517 B
CMake
Raw Normal View History

# 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
eden_notifications
Folly::folly
)
add_subdirectory(privhelper)