forked from boostorg/range
Compare commits
28 Commits
svn-branch
...
boost-1.39
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
41ab7090d2 | ||
|
|
c8c808b04e | ||
|
|
deefb61ec6 | ||
|
|
12d904a5e4 | ||
|
|
26b096f65d | ||
|
|
a85afbe470 | ||
|
|
e7902d439b | ||
|
|
b4f99d66b5 | ||
|
|
d1c2c5ce3f | ||
|
|
062e820882 | ||
|
|
4d381e8564 | ||
|
|
fd00cc129f | ||
|
|
8291ce67fc | ||
|
|
dbfa1df088 | ||
|
|
5afec2b74f | ||
|
|
a33d5c22c5 | ||
|
|
901266b76a | ||
|
|
25e932149c | ||
|
|
c54e15d374 | ||
|
|
fd448ffa31 | ||
|
|
21b558fe5e | ||
|
|
33c8f3e3ec | ||
|
|
523f8a5926 | ||
|
|
3bd0d886c4 | ||
|
|
e46eae8144 | ||
|
|
12cf02586c | ||
|
|
ee024f588b | ||
|
|
8e715b3810 |
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
|
||||
range.hpp
|
||||
range
|
||||
)
|
||||
|
||||
# Add a library target to the build system
|
||||
boost_library_project(
|
||||
range
|
||||
# SRCDIRS
|
||||
TESTDIRS test
|
||||
HEADERS ${lib_headers}
|
||||
DOCDIRS doc
|
||||
DESCRIPTION "A new infrastructure for generic algorithms that builds on top of the new iterator concepts."
|
||||
MODULARIZED
|
||||
AUTHORS "Thorsten Ottosen <nesotto -at- cs.auc.dk>"
|
||||
# MAINTAINERS
|
||||
)
|
||||
|
||||
|
||||
1
doc/CMakeLists.txt
Normal file
1
doc/CMakeLists.txt
Normal file
@@ -0,0 +1 @@
|
||||
boost_add_documentation(boost_range.qbk)
|
||||
@@ -291,7 +291,7 @@ ul.auto-toc {
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="boost-range-mfc-atl-extension">
|
||||
<h1 class="title"><img alt="Boost" src="../../ptr_container/doc/boost.png" /> Range MFC/ATL Extension</h1>
|
||||
<h1 class="title"><img alt="Boost" src="http://www.boost.org/libs/ptr_container/doc/boost.png" /> Range MFC/ATL Extension</h1>
|
||||
<table class="docinfo" frame="void" rules="none">
|
||||
<col class="docinfo-name" />
|
||||
<col class="docinfo-content" />
|
||||
|
||||
@@ -26,8 +26,7 @@
|
||||
the new function <a
|
||||
href="boost_range.html#as_literal">as_literal()</a>.</li>
|
||||
<li><a
|
||||
href="boost_range.html#size">boost::size()</a> now requires a Random
|
||||
Access Range. The old behavior is provided as <a
|
||||
href="boost_range.html#size">boost::size()</a> now requires a Random Access Range. The old behavior is provided as <a
|
||||
href="boost_range.html#distance">boost::distance()</a> </li>
|
||||
<li> <code>range_size<T>::type</code> has been completely removed
|
||||
in favor of <code>range_difference<T>::type</code>
|
||||
|
||||
1
module.cmake
Normal file
1
module.cmake
Normal file
@@ -0,0 +1 @@
|
||||
boost_module(range DEPENDS algorithm)
|
||||
19
test/CMakeLists.txt
Normal file
19
test/CMakeLists.txt
Normal file
@@ -0,0 +1,19 @@
|
||||
boost_additional_test_dependencies(range BOOST_DEPENDS test)
|
||||
|
||||
message(STATUS "libs/range/test: need -Wall -Wunused here when under gcc")
|
||||
set( test_compile_flags "")
|
||||
IF(CMAKE_COMPILER_IS_GNUCC)
|
||||
SET(test_compile_flags "-Wall -Wunused")
|
||||
ENDIF(CMAKE_COMPILER_IS_GNUCC)
|
||||
|
||||
boost_test_run(array DEPENDS boost_unit_test_framework COMPILE_FLAGS ${test_compile_flags})
|
||||
boost_test_run(iterator_pair DEPENDS boost_unit_test_framework COMPILE_FLAGS ${test_compile_flags})
|
||||
boost_test_run(std_container DEPENDS boost_unit_test_framework COMPILE_FLAGS ${test_compile_flags})
|
||||
boost_test_run(string DEPENDS boost_unit_test_framework COMPILE_FLAGS ${test_compile_flags})
|
||||
boost_test_run(iterator_range DEPENDS boost_unit_test_framework COMPILE_FLAGS ${test_compile_flags})
|
||||
boost_test_run(sub_range DEPENDS boost_unit_test_framework COMPILE_FLAGS ${test_compile_flags})
|
||||
boost_test_run(partial_workaround DEPENDS boost_unit_test_framework COMPILE_FLAGS ${test_compile_flags})
|
||||
boost_test_run(algorithm_example DEPENDS boost_unit_test_framework COMPILE_FLAGS ${test_compile_flags})
|
||||
boost_test_run(reversible_range DEPENDS boost_unit_test_framework COMPILE_FLAGS ${test_compile_flags})
|
||||
boost_test_run(const_ranges DEPENDS boost_unit_test_framework COMPILE_FLAGS ${test_compile_flags})
|
||||
boost_test_run(extension_mechanism DEPENDS boost_unit_test_framework COMPILE_FLAGS ${test_compile_flags})
|
||||
Reference in New Issue
Block a user