sapling/eden/fs/py/CMakeLists.txt

16 lines
442 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_RECURSE EDEN_PY_SRCS "eden/*.py")
add_fb_python_library(
eden_py
NAMESPACE ""
SOURCES
${EDEN_PY_SRCS}
# Also include the generated eden/config.py file
"${CMAKE_CURRENT_BINARY_DIR}/eden/config.py=eden/config.py"
DEPENDS eden_service_thrift_py
)