sapling/eden/fs/config/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

29 lines
543 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.
add_fbthrift_library(
eden_config_thrift
eden_config.thrift
LANGUAGES cpp py
PY_NAMESPACE facebook.eden.eden_config
)
file(GLOB CONFIG_SRCS "*.cpp")
add_library(
eden_config STATIC
${CONFIG_SRCS}
)
target_link_libraries(
eden_config
PUBLIC
eden_config_thrift_cpp
eden_model
eden_utils
cpptoml
${RE2_LIBRARY}
)
add_subdirectory(test)