sapling/eden/fs/cli/CMakeLists.txt
Ratnadeep Joshi 9ce47b3031 Move eden.cli namespace to eden.fs.cli
Summary: [edenfs] Move eden.cli namespace to eden.fs.cli

Reviewed By: simpkins

Differential Revision: D20520952

fbshipit-source-id: 182793867404dcb0753363282640f8fd4d2ff496
2020-03-25 11:46:56 -07:00

19 lines
503 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 EDENFSCTL_SRCS "*.py" "doctor/*.py")
add_fb_python_executable(
edenfsctl
MAIN_MODULE eden.fs.cli.main:zipapp_main
SOURCES ${EDENFSCTL_SRCS}
DEPENDS
eden_py
eden_overlay_thrift_py
eden_service_thrift_py
FBThrift::thrift_py_inspect
python-toml::python-toml
)
install_fb_python_executable(edenfsctl)