mirror of
https://github.com/boostorg/algorithm.git
synced 2025-06-27 13:01:40 +02:00
Compare commits
6 Commits
svn-branch
...
svn-branch
Author | SHA1 | Date | |
---|---|---|---|
4c72b78551 | |||
6702b04019 | |||
4e17ef2b40 | |||
f62e23a14c | |||
8ff3ace362 | |||
a232c948bf |
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
|
||||||
|
algorithm
|
||||||
|
)
|
||||||
|
|
||||||
|
# Add a library target to the build system
|
||||||
|
boost_library_project(
|
||||||
|
algorithm
|
||||||
|
# SRCDIRS
|
||||||
|
TESTDIRS minmax/test string/test
|
||||||
|
HEADERS ${lib_headers}
|
||||||
|
# DOCDIRS
|
||||||
|
DESCRIPTION "A library of various algorithms."
|
||||||
|
MODULARIZED
|
||||||
|
AUTHORS "Pavol Droba <droba -at- topmail.sk>"
|
||||||
|
"Herve Bronnimann <hbr -at- poly.edu>"
|
||||||
|
# MAINTAINERS
|
||||||
|
)
|
||||||
|
|
||||||
|
|
@ -56,7 +56,7 @@ be enough. The present library solves both problems.</p>
|
|||||||
<tt>minmax</tt>
|
<tt>minmax</tt>
|
||||||
as straightforward extensions of the C++
|
as straightforward extensions of the C++
|
||||||
standard. As it returns a pair of <tt>const&</tt>, we must use the <a
|
standard. As it returns a pair of <tt>const&</tt>, we must use the <a
|
||||||
href=:../../../../tuple/index.html>Boost.tuple</a> library to construct such
|
href="../../tuple/index.html">Boost.tuple</a> library to construct such
|
||||||
pairs. (Please note: the intent is not to fix the known defaults of
|
pairs. (Please note: the intent is not to fix the known defaults of
|
||||||
<tt>std::min</tt>
|
<tt>std::min</tt>
|
||||||
and <tt>std::max</tt>, but to add one more algorithms that combines both; see the
|
and <tt>std::max</tt>, but to add one more algorithms that combines both; see the
|
||||||
|
8
minmax/test/CMakeLists.txt
Normal file
8
minmax/test/CMakeLists.txt
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#-- Needed include directories for the tests
|
||||||
|
boost_test_add_dependent_includes("utility;detail;config;test;mpl;bind;type_traits;static_assert;preprocessor;array;iterator;timer;tuple;range")
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
boost_test_run(minmax_element_test)
|
||||||
|
boost_test_run(minmax_test)
|
1
module.cmake
Normal file
1
module.cmake
Normal file
@ -0,0 +1 @@
|
|||||||
|
boost_module(algorithm DEPENDS regex concept_check)
|
16
string/test/CMakeLists.txt
Normal file
16
string/test/CMakeLists.txt
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#-- Needed include directories for the tests
|
||||||
|
boost_test_add_dependent_includes("utility;detail;config;test;mpl;bind;type_traits;static_assert;preprocessor;array;iterator;exception;range;timer")
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
boost_test_run(trim_test)
|
||||||
|
|
||||||
|
boost_test_run(conv_test)
|
||||||
|
boost_test_run(predicate_test)
|
||||||
|
boost_test_run(find_test)
|
||||||
|
boost_test_run(split_test)
|
||||||
|
boost_test_run(join_test)
|
||||||
|
boost_test_run(replace_test)
|
||||||
|
boost_test_run(regex_test DEPENDS boost_regex SHARED)
|
||||||
|
|
Reference in New Issue
Block a user