sapling/eden/fs/telemetry/CMakeLists.txt
Katie Mancini ce0287d81c get oss windows build back to functioning
Summary:
The external OSS build is broken because thrift has a really long path and
cargo/git on Windows do not lick such long paths.

I'm not fixing that. But the external OSS build is the only one we run in CI any
more. In the meantime the internal build has broken because no one has been
watching.

There were 4 different breakages.

Reviewed By: chadaustin

Differential Revision: D44189633

fbshipit-source-id: 2eedbc2b3bbf5d1def075d99f11f2273dbb1f4ab
2023-03-29 12:52:44 -07:00

22 lines
412 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 TELEMETRY_SRCS "*.cpp")
add_library(
eden_telemetry STATIC
${TELEMETRY_SRCS}
)
target_link_libraries(
eden_telemetry
PUBLIC
eden_config
eden_service_thrift_util
eden_utils
fb303::fb303
Folly::folly
)