Fix names of numeric components, again

This commit is contained in:
Peter Dimov
2026-06-29 14:14:27 +03:00
parent 890d4ac308
commit 834adce441
2 changed files with 7 additions and 5 deletions
+4 -4
View File
@@ -157,10 +157,10 @@ jobs:
matrix:
library:
- nowide
- numeric_conversion
- numeric_interval
- numeric_odeint
- numeric_ublas
- numeric/conversion
- numeric/interval
- numeric/odeint
- numeric/ublas
- openmethod
- optional
- outcome
+3 -1
View File
@@ -1,4 +1,4 @@
# Copyright 2018, 2019 Peter Dimov
# Copyright 2018, 2019, 2026 Peter Dimov
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)
@@ -12,6 +12,8 @@ project(CmakeConfigComponentTest LANGUAGES CXX)
include(${CMAKE_CURRENT_LIST_DIR}/../BoostVersion.cmake)
string(MAKE_C_IDENTIFIER "${COMPONENT}" COMPONENT) # numeric/conversion -> numeric_conversion
find_package(Boost ${BOOST_VERSION} EXACT REQUIRED COMPONENTS ${COMPONENT})
add_executable(main main.cpp)