mirror of
https://github.com/boostorg/multi_array.git
synced 2026-01-25 06:22:10 +00:00
Compare commits
5 Commits
boost-1.37
...
boost-1.40
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bceb5f9466 | ||
|
|
6f00b4609c | ||
|
|
8147ea248b | ||
|
|
ed2b6ac3e3 | ||
|
|
5479ef94c8 |
28
CMakeLists.txt
Normal file
28
CMakeLists.txt
Normal file
@@ -0,0 +1,28 @@
|
||||
#
|
||||
# Copyright Troy D. Straszheim
|
||||
#
|
||||
# Distributed under the Boost Software License, Version 1.0.
|
||||
# See http://www.boost.org/LICENSE_1_0.txt
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
# 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>
|
||||
|
||||
@@ -20,7 +20,7 @@ Boost.MultiArray: Test Descriptions
|
||||
</title>
|
||||
</head>
|
||||
<body bgcolor="#ffffff" text="#000000">
|
||||
<IMG SRC="http://www.boost.org/boost.png"
|
||||
<IMG SRC="../../../boost.png"
|
||||
ALT="C++ Boost" width="277" height="86">
|
||||
<h1>Boost.MultiArray: Test Descriptions</h1>
|
||||
|
||||
|
||||
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)
|
||||
|
||||
47
test/CMakeLists.txt
Normal file
47
test/CMakeLists.txt
Normal file
@@ -0,0 +1,47 @@
|
||||
#
|
||||
# Copyright Troy D. Straszheim
|
||||
#
|
||||
# Distributed under the Boost Software License, Version 1.0.
|
||||
# See http://www.boost.org/LICENSE_1_0.txt
|
||||
#
|
||||
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