# Copyright (c) Facebook, Inc. and its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
add_subdirectory(utils)

add_executable(
  velox_type_test
  ConversionsTest.cpp
  DecimalTest.cpp
  FilterTest.cpp
  FilterSerDeTest.cpp
  FloatingPointUtilTest.cpp
  HugeIntTest.cpp
  StringViewTest.cpp
  SubfieldTest.cpp
  TimestampConversionTest.cpp
  TimestampTest.cpp
  TypeTest.cpp
  VariantTest.cpp)

add_test(velox_type_test velox_type_test)

target_link_libraries(
  velox_type_test
  velox_type
  velox_type_test_lib
  velox_common_base
  Folly::folly
  GTest::gtest
  GTest::gtest_main
  GTest::gmock
  gflags::gflags
  glog::glog)

if(VELOX_ENABLE_BENCHMARKS)
  add_executable(velox_filter_benchmark FilterBenchmark.cpp)

  target_link_libraries(
    velox_filter_benchmark
    velox_type
    velox_serialization
    Folly::folly
    Folly::follybenchmark
    GTest::gtest
    GTest::gtest_main
    gflags::gflags
    glog::glog)

  add_executable(velox_negated_values_filter_benchmark
                 NegatedValuesFilterBenchmark.cpp)

  target_link_libraries(
    velox_negated_values_filter_benchmark
    velox_type
    velox_serialization
    Folly::folly
    Folly::follybenchmark
    GTest::gtest
    GTest::gtest_main
    gflags::gflags
    glog::glog)

  add_executable(velox_negated_bytes_values_benchmark
                 NegatedBytesValuesBenchmark.cpp)

  target_link_libraries(
    velox_negated_bytes_values_benchmark
    velox_type
    velox_serialization
    Folly::folly
    Folly::follybenchmark
    GTest::gtest
    GTest::gtest_main
    gflags::gflags
    glog::glog)

  add_executable(velox_negated_bigint_range_benchmark
                 NegatedBigintRangeBenchmark.cpp)

  target_link_libraries(
    velox_negated_bigint_range_benchmark
    velox_type
    velox_serialization
    Folly::folly
    Folly::follybenchmark
    GTest::gtest
    GTest::gtest_main
    gflags::gflags
    glog::glog)

  add_executable(velox_negated_bytes_range_benchmark
                 NegatedBytesRangeBenchmark.cpp)

  target_link_libraries(
    velox_negated_bytes_range_benchmark
    velox_type
    velox_serialization
    Folly::folly
    Folly::follybenchmark
    GTest::gtest
    GTest::gtest_main
    gflags::gflags
    glog::glog)

  add_executable(velox_string_view_benchmark StringViewBenchmark.cpp)

  target_link_libraries(
    velox_string_view_benchmark
    velox_type
    Folly::folly
    Folly::follybenchmark
    GTest::gtest
    GTest::gtest_main
    gflags::gflags
    glog::glog)
endif()
