mirror of
https://github.com/boostorg/algorithm.git
synced 2025-06-25 20:11:50 +02:00
Compare commits
2 Commits
boost-1.37
...
boost-1.38
Author | SHA1 | Date | |
---|---|---|---|
2817b46230 | |||
c33935fa1f |
20
CMakeLists.txt
Normal file
20
CMakeLists.txt
Normal file
@ -0,0 +1,20 @@
|
||||
#----------------------------------------------------------------------------
|
||||
# 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
|
||||
)
|
4
minmax/test/CMakeLists.txt
Normal file
4
minmax/test/CMakeLists.txt
Normal file
@ -0,0 +1,4 @@
|
||||
boost_additional_test_dependencies(algorithm BOOST_DEPENDS test)
|
||||
|
||||
boost_test_run(minmax_element_test)
|
||||
boost_test_run(minmax_test)
|
4
module.cmake
Normal file
4
module.cmake
Normal file
@ -0,0 +1,4 @@
|
||||
boost_module(algorithm DEPENDS regex concept_check range)
|
||||
|
||||
|
||||
|
12
string/test/CMakeLists.txt
Normal file
12
string/test/CMakeLists.txt
Normal file
@ -0,0 +1,12 @@
|
||||
boost_additional_test_dependencies(algorithm BOOST_DEPENDS test)
|
||||
|
||||
|
||||
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