sapling/eden/fs/journal/CMakeLists.txt
Chad Austin 65c93484e2 rename tracing to telemetry
Summary: Tracing was not an accurate name for what this directory had become. So rename it to telemetry.

Reviewed By: wez

Differential Revision: D17923303

fbshipit-source-id: fca07e8447d9b9b3ea5d860809a2d377e3c4f9f2
2019-10-15 13:39:41 -07:00

19 lines
384 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 JOURNAL_SRCS "*.cpp")
add_library(
eden_journal STATIC
${JOURNAL_SRCS}
)
target_link_libraries(
eden_journal
PUBLIC
eden_model
eden_telemetry
eden_utils
streamingeden_thrift_cpp
)