forked from boostorg/iterator
Continuing merge of CMake build system files into trunk with the encouragement of Doug Gregor
[SVN r49510]
This commit is contained in:
24
CMakeLists.txt
Normal file
24
CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
#----------------------------------------------------------------------------
|
||||||
|
# This file was automatically generated from the original CMakeLists.txt file
|
||||||
|
# Add a variable to hold the headers for the library
|
||||||
|
set (lib_headers
|
||||||
|
iterator.hpp
|
||||||
|
iterator
|
||||||
|
)
|
||||||
|
|
||||||
|
# Add a library target to the build system
|
||||||
|
boost_library_project(
|
||||||
|
iterator
|
||||||
|
# SRCDIRS
|
||||||
|
TESTDIRS test
|
||||||
|
HEADERS ${lib_headers}
|
||||||
|
# DOCDIRS
|
||||||
|
DESCRIPTION "A system of concepts which extend the C++ standard iterator requirementsand a framework of components for building iterators based on these extended concepts and includes several useful iterator adaptors."
|
||||||
|
MODULARIZED
|
||||||
|
AUTHORS "David Abrahams <dave -at- boostpro.com>"
|
||||||
|
"Jeremy Siek <jeremy.siek -at- gmail.com>"
|
||||||
|
"Thomas Witt <witt - at - acm.org>"
|
||||||
|
# MAINTAINERS
|
||||||
|
)
|
||||||
|
|
||||||
|
|
1
module.cmake
Normal file
1
module.cmake
Normal file
@ -0,0 +1 @@
|
|||||||
|
boost_module(iterator DEPENDS config mpl type_traits function)
|
31
test/CMakeLists.txt
Normal file
31
test/CMakeLists.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
# These first two tests will run last, and are expected to fail
|
||||||
|
# for many less-capable compilers.
|
||||||
|
|
||||||
|
boost_test_compile_fail(interoperable_fail)
|
||||||
|
# test uses expected success, so that we catch unrelated
|
||||||
|
# compilation problems.
|
||||||
|
boost_test_run(is_convertible_fail)
|
||||||
|
boost_test_run(zip_iterator_test)
|
||||||
|
|
||||||
|
# These tests should work for just about everything.
|
||||||
|
boost_test_compile(is_lvalue_iterator)
|
||||||
|
boost_test_compile(is_readable_iterator)
|
||||||
|
boost_test_compile(pointee)
|
||||||
|
|
||||||
|
boost_test_run(unit_tests)
|
||||||
|
boost_test_run(concept_tests)
|
||||||
|
boost_test_run(iterator_adaptor_cc)
|
||||||
|
boost_test_run(iterator_adaptor_test)
|
||||||
|
boost_test_compile(iterator_archetype_cc)
|
||||||
|
boost_test_compile_fail(iter_archetype_default_ctor)
|
||||||
|
boost_test_compile_fail(lvalue_concept_fail)
|
||||||
|
boost_test_run(transform_iterator_test)
|
||||||
|
boost_test_run(indirect_iterator_test)
|
||||||
|
boost_test_compile(indirect_iter_member_types)
|
||||||
|
boost_test_run(filter_iterator_test)
|
||||||
|
boost_test_run(iterator_facade)
|
||||||
|
boost_test_run(reverse_iterator_test)
|
||||||
|
boost_test_run(counting_iterator_test)
|
||||||
|
boost_test_run(interoperable)
|
||||||
|
boost_test_run(iterator_traits_test)
|
||||||
|
boost_test_run(permutation_iterator_test)
|
Reference in New Issue
Block a user