sapling/eden/fs/service/CMakeLists.txt
Xavier Deguillard fc382774d6 service: remove dependency on curl
Summary:
From what I can see, this was added when EdenFS had a Mononoke store, which is
now long gone, thus we should be able to remove the Curl dependency altogether.

Reviewed By: fanzeyi

Differential Revision: D28037816

fbshipit-source-id: 834f7db64bab5dda1748ad2f033c27a2854b0ba4
2021-04-29 19:41:04 -07:00

91 lines
1.9 KiB
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.
add_fbthrift_library(
eden_service_thrift
eden.thrift
LANGUAGES cpp py
PY_NAMESPACE facebook.eden
SERVICES
EdenService
DEPENDS
eden_config_thrift
fb303::fb303_thrift
)
add_fbthrift_library(
streamingeden_thrift
streamingeden.thrift
LANGUAGES cpp
SERVICES
StreamingEdenService
DEPENDS
eden_service_thrift
)
file(GLOB SERVICE_SRCS "*.cpp")
# A couple utility files our split out into a separate lower-level library
# This also effectively includes ThriftUtil.h, which has no corresponding .cpp
# file.
# TODO: In the future it would perhaps be nicer to move these to a separate
# eden/fs/thrift/ subdirectory, perhaps along with eden.thrift too.
list(
REMOVE_ITEM SERVICE_SRCS
${CMAKE_CURRENT_SOURCE_DIR}/PrettyPrinters.cpp
${CMAKE_CURRENT_SOURCE_DIR}/PrivHelperMain.cpp
)
add_library(
eden_service_thrift_util STATIC
PrettyPrinters.cpp
)
target_link_libraries(
eden_service_thrift_util
PUBLIC
eden_model
Folly::folly
)
list(APPEND EDEN_STORE_IMPLEMENTATIONS eden_store_hg)
if(EDEN_HAVE_RECAS)
list(APPEND EDEN_STORE_IMPLEMENTATIONS eden_store_recas)
endif()
if(EDEN_HAVE_GIT)
list(APPEND EDEN_STORE_IMPLEMENTATIONS eden_store_git)
endif()
add_library(
eden_service STATIC
${SERVICE_SRCS}
)
target_link_libraries(
eden_service
PUBLIC
eden_service_thrift_util
streamingeden_thrift_cpp
eden_build_config
eden_config
eden_fuse_privhelper
eden_inodes
eden_model
eden_nfs_server
eden_store
eden_telemetry
${EDEN_STORE_IMPLEMENTATIONS}
${YARPL_LIBRARIES}
Folly::folly
cpptoml
)
if (NOT WIN32)
target_link_libraries(
eden_service
PUBLIC
eden_fuse
eden_notifications
eden_takeover
)
endif()