Files
interval/test/CMakeLists.txt
James E. King III 26800d3a7f Implement reusable Boost.CI workflow for GHA
Also added a cmake test script.
Fix error: use of overloaded operator '!=' is ambiguous clang-10 on C++20
disabled clang-10: https://github.com/llvm/llvm-project/issues/43110
2025-07-02 16:56:09 -04:00

13 lines
418 B
CMake

# Copyright 2018, 2019 Peter Dimov
# Copyright 2025 James E. King III
# Distributed under the Boost Software License, Version 1.0.
# See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
include(BoostTestJamfile OPTIONAL RESULT_VARIABLE HAVE_BOOST_TEST)
if(HAVE_BOOST_TEST)
boost_test_jamfile(FILE Jamfile.v2 LINK_LIBRARIES Boost::numeric_interval Boost::core Boost::logic)
endif()