# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

if(NOT BUILD_TESTS)
  return()
endif()

add_executable(
  tperf
  tperf.cpp
  TperfDSRSender.cpp
  TperfClient.cpp
  TperfServer.cpp
)

target_compile_options(
  tperf
  PRIVATE
  ${_QUIC_COMMON_COMPILE_OPTIONS}
)

target_include_directories(tperf PRIVATE
  ${LIBGMOCK_INCLUDE_DIR}
  ${LIBGTEST_INCLUDE_DIR}
)

target_link_libraries(
  tperf PUBLIC
  Folly::folly
  fizz::fizz
  mvfst_test_utils
  mvfst_dsr_backend
  ${GFLAGS_LIBRARIES}
  ${LIBGMOCK_LIBRARIES}
)

install(
  TARGETS tperf
  EXPORT mvfst-exports
  ARCHIVE DESTINATION ${CMAKE_INSTALL_DIR}
  LIBRARY DESTINATION ${CMAKE_INSTALL_DIR}
)
