mirror of
https://github.com/boostorg/function.git
synced 2026-01-29 07:32:15 +00:00
Compare commits
46 Commits
boost-1.41
...
sandbox-br
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
54ad35d346 | ||
|
|
81c7876588 | ||
|
|
2020d39e2c | ||
|
|
8b63c146ea | ||
|
|
ae534d7342 | ||
|
|
e8247198fa | ||
|
|
ff3244d562 | ||
|
|
68128bfffa | ||
|
|
e10f4eaef9 | ||
|
|
a74e72cce9 | ||
|
|
6f8ec5c8c5 | ||
|
|
678fb133f0 | ||
|
|
821e6d34dd | ||
|
|
529dc74954 | ||
|
|
e8504c1777 | ||
|
|
07800455a8 | ||
|
|
f559986ae8 | ||
|
|
8ca7384121 | ||
|
|
75890fea53 | ||
|
|
da259e8dce | ||
|
|
2fe4cc253f | ||
|
|
f379ef8532 | ||
|
|
ea18f5777b | ||
|
|
d5a86a2d52 | ||
|
|
e3dfa7268a | ||
|
|
bacb5d6752 | ||
|
|
04040ae566 | ||
|
|
fe2d04e954 | ||
|
|
0936dbdd03 | ||
|
|
adb7b0a214 | ||
|
|
cead36cd5b | ||
|
|
81e558491b | ||
|
|
2378ba59e7 | ||
|
|
53b95c386d | ||
|
|
3312c7ffcd | ||
|
|
de27ae9697 | ||
|
|
a7b9940f15 | ||
|
|
e4f165a4e8 | ||
|
|
80a3f47099 | ||
|
|
2a85edbd31 | ||
|
|
5c514ebe35 | ||
|
|
6a3f0df553 | ||
|
|
64c8d10fa8 | ||
|
|
a2a810d2c1 | ||
|
|
d84481361f | ||
|
|
872f12efee |
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
|
||||
function.hpp
|
||||
function
|
||||
)
|
||||
|
||||
# Add a library target to the build system
|
||||
boost_library_project(
|
||||
function
|
||||
# SRCDIRS
|
||||
TESTDIRS test
|
||||
HEADERS ${lib_headers}
|
||||
DOCDIRS doc
|
||||
# DESCRIPTION
|
||||
MODULARIZED
|
||||
# AUTHORS
|
||||
# MAINTAINERS
|
||||
)
|
||||
|
||||
|
||||
8
doc/CMakeLists.txt
Normal file
8
doc/CMakeLists.txt
Normal file
@@ -0,0 +1,8 @@
|
||||
#
|
||||
# Copyright Troy D. Straszheim
|
||||
#
|
||||
# Distributed under the Boost Software License, Version 1.0.
|
||||
# See http://www.boost.org/LICENSE_1_0.txt
|
||||
#
|
||||
boost_add_documentation(function.xml
|
||||
faq.xml history.xml misc.xml reference.xml tests.xml tutorial.xml)
|
||||
1
module.cmake
Normal file
1
module.cmake
Normal file
@@ -0,0 +1 @@
|
||||
boost_module(function DEPENDS detail preprocessor utility)
|
||||
29
test/CMakeLists.txt
Normal file
29
test/CMakeLists.txt
Normal file
@@ -0,0 +1,29 @@
|
||||
#
|
||||
# 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(function BOOST_DEPENDS test lambda)
|
||||
|
||||
|
||||
boost_test_run(lib_function_test function_test.cpp)
|
||||
boost_test_run(function_n_test)
|
||||
boost_test_run(allocator_test)
|
||||
boost_test_run(stateless_test)
|
||||
boost_test_run(lambda_test)
|
||||
boost_test_compile_fail(function_test_fail1)
|
||||
boost_test_compile_fail(function_test_fail2)
|
||||
boost_test_compile(function_30)
|
||||
boost_test_run(function_arith_cxx98)
|
||||
boost_test_run(function_arith_portable)
|
||||
boost_test_run(sum_avg_cxx98)
|
||||
boost_test_run(sum_avg_portable)
|
||||
boost_test_run(mem_fun_cxx98)
|
||||
boost_test_run(mem_fun_portable)
|
||||
boost_test_run(std_bind_cxx98)
|
||||
boost_test_run(std_bind_portable)
|
||||
boost_test_run(function_ref_cxx98)
|
||||
boost_test_run(function_ref_portable)
|
||||
boost_test_run(contains_test)
|
||||
boost_test_run(contains2_test)
|
||||
Reference in New Issue
Block a user