Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# 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)

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]
Expand Down
2 changes: 1 addition & 1 deletion tests/beman/bounds_test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading