sapling/eden/fs/py/CMakeLists.txt
Xavier Deguillard a29d465ee8 fs: fix license header
Summary:
With Facebook having been renamed Meta Platforms, we need to change the license
headers.

Reviewed By: fanzeyi

Differential Revision: D33407812

fbshipit-source-id: b11bfbbf13a48873f0cea75f212cc7b07a68fb2e
2022-01-04 15:00:07 -08:00

16 lines
444 B
CMake

# Copyright (c) Meta Platforms, Inc. and 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
)