sapling/eden/cli/CMakeLists.txt
Adam Simpkins a49f4274d6 install the edenfsctl program during the CMake build
Summary:
Update Eden's CMake build to use the new `install_fb_python_executable()`
function to install `edenfsctl`

Reviewed By: wez

Differential Revision: D18774538

fbshipit-source-id: 462c0127d79edcb6235a629cb97ea481493e1906
2019-12-03 21:42:28 -08:00

19 lines
500 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.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)