From f58fd83cbbce01e1d42f34ae91ef495488ecfdde Mon Sep 17 00:00:00 2001 From: ClausKlein Date: Fri, 10 Jul 2026 12:28:55 +0200 Subject: [PATCH] Fix typo in cmake file to build tests again --- CMakeLists.txt | 4 ++-- tests/beman/bounds_test/CMakeLists.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5d0e4e8..c415ea6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -cmake_minimum_required(VERSION 3.28) +cmake_minimum_required(VERSION 3.28...4.4) include(cmake/bootstrap_vcpkg.cmake) @@ -7,7 +7,7 @@ project( beman.bounds_test DESCRIPTION "A library for checking integer operation boundary conditions" LANGUAGES CXX - VERSION 0.0.1 + VERSION 0.1.0 ) # [CMAKE.SKIP_TESTS] diff --git a/tests/beman/bounds_test/CMakeLists.txt b/tests/beman/bounds_test/CMakeLists.txt index 677f22b..45582e4 100644 --- a/tests/beman/bounds_test/CMakeLists.txt +++ b/tests/beman/bounds_test/CMakeLists.txt @@ -3,7 +3,7 @@ find_package(Catch2 3 REQUIRED CONFIG) add_executable(beman.bounds_test.tests) -target_sources(beman.bounds_test.tests PRIVATE bounds_test.tests.cpp) +target_sources(beman.bounds_test.tests PRIVATE bounds_test.test.cpp) target_compile_features(beman.bounds_test.tests PRIVATE cxx_std_20) target_link_libraries( beman.bounds_test.tests