sapling/eden/fs/fuse/CMakeLists.txt
Wez Furlong 3b5315ca43 eden: handlemap.thrift was removed, but not from cmake build
Summary: overlooked because there is no CI exercising this today

Reviewed By: simpkins

Differential Revision: D13475721

fbshipit-source-id: 3e8fe280ab73d249da374129b37d32cd7e17f472
2018-12-15 13:43:31 -08:00

19 lines
343 B
CMake

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