mirror of
https://github.com/boostorg/multi_array.git
synced 2026-01-25 06:22:10 +00:00
Compare commits
4 Commits
boost-1.76
...
develop
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
333c304d84 | ||
|
|
0c5348bef7 | ||
|
|
dfbe377927 | ||
|
|
e8140d8183 |
34
CMakeLists.txt
Normal file
34
CMakeLists.txt
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
# Generated by `boostdep --cmake multi_array`
|
||||||
|
# Copyright 2020 Peter Dimov
|
||||||
|
# Distributed under the Boost Software License, Version 1.0.
|
||||||
|
# https://www.boost.org/LICENSE_1_0.txt
|
||||||
|
|
||||||
|
cmake_minimum_required(VERSION 3.5...3.16)
|
||||||
|
|
||||||
|
project(boost_multi_array VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
|
||||||
|
|
||||||
|
add_library(boost_multi_array INTERFACE)
|
||||||
|
add_library(Boost::multi_array ALIAS boost_multi_array)
|
||||||
|
|
||||||
|
target_include_directories(boost_multi_array INTERFACE include)
|
||||||
|
|
||||||
|
target_link_libraries(boost_multi_array
|
||||||
|
INTERFACE
|
||||||
|
Boost::array
|
||||||
|
Boost::assert
|
||||||
|
Boost::concept_check
|
||||||
|
Boost::config
|
||||||
|
Boost::core
|
||||||
|
Boost::functional
|
||||||
|
Boost::iterator
|
||||||
|
Boost::mpl
|
||||||
|
Boost::static_assert
|
||||||
|
Boost::type_traits
|
||||||
|
)
|
||||||
|
|
||||||
|
if(BUILD_TESTING AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/test/CMakeLists.txt")
|
||||||
|
|
||||||
|
add_subdirectory(test)
|
||||||
|
|
||||||
|
endif()
|
||||||
|
|
||||||
30
build.jam
Normal file
30
build.jam
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# Copyright René Ferdinand Rivera Morell 2023-2024
|
||||||
|
# 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)
|
||||||
|
|
||||||
|
require-b2 5.2 ;
|
||||||
|
|
||||||
|
constant boost_dependencies :
|
||||||
|
/boost/array//boost_array
|
||||||
|
/boost/assert//boost_assert
|
||||||
|
/boost/concept_check//boost_concept_check
|
||||||
|
/boost/config//boost_config
|
||||||
|
/boost/core//boost_core
|
||||||
|
/boost/functional//boost_functional
|
||||||
|
/boost/iterator//boost_iterator
|
||||||
|
/boost/mpl//boost_mpl
|
||||||
|
/boost/static_assert//boost_static_assert
|
||||||
|
/boost/type_traits//boost_type_traits ;
|
||||||
|
|
||||||
|
project /boost/multi_array
|
||||||
|
;
|
||||||
|
|
||||||
|
explicit
|
||||||
|
[ alias boost_multi_array : : :
|
||||||
|
: <include>include <library>$(boost_dependencies) ]
|
||||||
|
[ alias all : boost_multi_array test ]
|
||||||
|
;
|
||||||
|
|
||||||
|
call-if : boost-library multi_array
|
||||||
|
;
|
||||||
@@ -11,5 +11,6 @@
|
|||||||
],
|
],
|
||||||
"maintainers": [
|
"maintainers": [
|
||||||
"Ronald Garcia <garcia -at- osl.iu.edu>"
|
"Ronald Garcia <garcia -at- osl.iu.edu>"
|
||||||
]
|
],
|
||||||
|
"cxxstd": "03"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
import testing ;
|
import testing ;
|
||||||
|
|
||||||
|
project : requirements <library>/boost/multi_array//boost_multi_array ;
|
||||||
|
|
||||||
compile-fail fail_cbracket.cpp ;
|
compile-fail fail_cbracket.cpp ;
|
||||||
compile-fail fail_cdata.cpp ;
|
compile-fail fail_cdata.cpp ;
|
||||||
compile-fail fail_citerator.cpp ;
|
compile-fail fail_citerator.cpp ;
|
||||||
@@ -15,7 +17,7 @@ compile-fail fail_csubarray.cpp ;
|
|||||||
compile-fail fail_csubarray2.cpp ;
|
compile-fail fail_csubarray2.cpp ;
|
||||||
compile-fail fail_csubarray3.cpp ;
|
compile-fail fail_csubarray3.cpp ;
|
||||||
compile-fail fail_cview.cpp ;
|
compile-fail fail_cview.cpp ;
|
||||||
compile-fail fail_cview2.cpp ;
|
compile-fail fail_cview2.cpp : <library>/boost/test//included ;
|
||||||
compile-fail fail_cview3.cpp ;
|
compile-fail fail_cview3.cpp ;
|
||||||
compile-fail fail_ref_cbracket.cpp ;
|
compile-fail fail_ref_cbracket.cpp ;
|
||||||
compile-fail fail_ref_cdata.cpp ;
|
compile-fail fail_ref_cdata.cpp ;
|
||||||
|
|||||||
Reference in New Issue
Block a user