mirror of
https://github.com/boostorg/multi_array.git
synced 2026-01-25 06:22:10 +00:00
Compare commits
3 Commits
boost-1.36
...
boost-1.39
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
25cdc7cf40 | ||
|
|
ed2b6ac3e3 | ||
|
|
5479ef94c8 |
22
CMakeLists.txt
Normal file
22
CMakeLists.txt
Normal file
@@ -0,0 +1,22 @@
|
||||
#----------------------------------------------------------------------------
|
||||
# This file was automatically generated from the original CMakeLists.txt file
|
||||
# Add a variable to hold the headers for the library
|
||||
set (lib_headers
|
||||
multi_array.hpp
|
||||
multi_array
|
||||
)
|
||||
|
||||
# Add a library target to the build system
|
||||
boost_library_project(
|
||||
multi_array
|
||||
# SRCDIRS
|
||||
TESTDIRS test
|
||||
HEADERS ${lib_headers}
|
||||
# DOCDIRS
|
||||
# DESCRIPTION
|
||||
MODULARIZED
|
||||
# AUTHORS
|
||||
# MAINTAINERS
|
||||
)
|
||||
|
||||
|
||||
@@ -45,13 +45,13 @@ definition and common implementations of that interface.
|
||||
<table>
|
||||
<tr valign=top>
|
||||
<td nowrap>Copyright © 2000-2001</td><td>
|
||||
<a href=http://www.osl.iu.edu/~garcia>Ronald Garcia</a>,
|
||||
<a href="http://www.osl.iu.edu/~garcia">Ronald Garcia</a>,
|
||||
Indiana University (<a
|
||||
HREF="mailto:garcia@osl.iu.edu">garcia@osl.iu.edu</a>)<br>
|
||||
<a href="http://www.boost.org/people/jeremy_siek.htm">Jeremy Siek</a>,
|
||||
Indiana University (<a
|
||||
HREF="mailto:jsiek@osl.iu.edu">jsiek@osl.iu.edu</a>)<br>
|
||||
<a href=http://www.osl.iu.edu/~lums>Andrew Lumsdaine</a>,
|
||||
<a href="http://www.osl.iu.edu/~lums">Andrew Lumsdaine</a>,
|
||||
Indiana University (<a
|
||||
HREF="mailto:lums@osl.iu.edu">lums@osl.iu.edu</a>)
|
||||
</td></tr></table>
|
||||
|
||||
2
module.cmake
Normal file
2
module.cmake
Normal file
@@ -0,0 +1,2 @@
|
||||
boost_module(multi_array DEPENDS array iterator detail concept_check mpl static_assert functional)
|
||||
|
||||
41
test/CMakeLists.txt
Normal file
41
test/CMakeLists.txt
Normal file
@@ -0,0 +1,41 @@
|
||||
boost_additional_test_dependencies(multi_array BOOST_DEPENDS test)
|
||||
|
||||
|
||||
boost_test_compile_fail(fail_cbracket)
|
||||
boost_test_compile_fail(fail_cdata)
|
||||
boost_test_compile_fail(fail_citerator)
|
||||
boost_test_compile_fail(fail_cparen)
|
||||
boost_test_compile_fail(fail_criterator)
|
||||
boost_test_compile_fail(fail_csubarray)
|
||||
boost_test_compile_fail(fail_csubarray2)
|
||||
boost_test_compile_fail(fail_csubarray3)
|
||||
boost_test_compile_fail(fail_cview)
|
||||
boost_test_compile_fail(fail_cview2)
|
||||
boost_test_compile_fail(fail_cview3)
|
||||
boost_test_compile_fail(fail_ref_cbracket)
|
||||
boost_test_compile_fail(fail_ref_cdata)
|
||||
boost_test_compile_fail(fail_ref_citerator)
|
||||
boost_test_compile_fail(fail_ref_cparen)
|
||||
boost_test_compile_fail(fail_ref_criterator)
|
||||
boost_test_compile_fail(fail_ref_csubarray)
|
||||
boost_test_compile_fail(fail_ref_csubarray2)
|
||||
boost_test_compile_fail(fail_ref_csubarray3)
|
||||
boost_test_compile_fail(fail_ref_cview)
|
||||
boost_test_compile_fail(fail_ref_cview2)
|
||||
boost_test_compile_fail(fail_ref_cview3)
|
||||
|
||||
boost_test_run(constructors DEPENDS boost_test_exec_monitor)
|
||||
boost_test_run(access DEPENDS boost_test_exec_monitor)
|
||||
boost_test_run(compare DEPENDS boost_test_exec_monitor)
|
||||
boost_test_run(iterators DEPENDS boost_test_exec_monitor)
|
||||
boost_test_run(slice DEPENDS boost_test_exec_monitor)
|
||||
boost_test_run(assign DEPENDS boost_test_exec_monitor)
|
||||
boost_test_run(assign_to_array DEPENDS boost_test_exec_monitor)
|
||||
boost_test_run(index_bases DEPENDS boost_test_exec_monitor)
|
||||
boost_test_run(storage_order DEPENDS boost_test_exec_monitor)
|
||||
boost_test_run(reshape DEPENDS boost_test_exec_monitor)
|
||||
boost_test_run(range1 DEPENDS boost_test_exec_monitor)
|
||||
boost_test_run(idxgen1 DEPENDS boost_test_exec_monitor)
|
||||
boost_test_run(stl_interaction DEPENDS boost_test_exec_monitor)
|
||||
boost_test_run(resize DEPENDS boost_test_exec_monitor)
|
||||
boost_test_compile(concept_checks)
|
||||
Reference in New Issue
Block a user