1
0
forked from boostorg/bind

Compare commits

..

2 Commits

Author SHA1 Message Date
Beman Dawes
9127363166 Release 1.41.0 Beta 1
[SVN r57353]
2009-11-04 12:14:07 +00:00
Troy D. Straszheim
8b58b0d207 rm cmake from the release branch before it goes out broken. Policy dictates that you never commit to release, you commit to trunk and merge to release.
[SVN r56941]
2009-10-17 01:10:45 +00:00
3 changed files with 0 additions and 76 deletions

View File

@@ -1,28 +0,0 @@
#
# 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
bind.hpp
bind
)
# Add a library target to the build system
boost_library_project(
bind
# SRCDIRS
TESTDIRS test
HEADERS ${lib_headers}
# DOCDIRS
DESCRIPTION "A generalization of the standard functions std::bind1st and std::bind2nd. It supports arbitrary function objects, functions, function pointers, and member function pointers, and is able to bind any argument to a specific value or route input arguments into arbitrary positions."
MODULARIZED
AUTHORS "Peter Dimov <pdimov -at- mmltd.net>"
# MAINTAINERS
)

View File

@@ -1 +0,0 @@
boost_module(bind DEPENDS utility mpl detail config)

View File

@@ -1,47 +0,0 @@
#
# 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(bind BOOST_DEPENDS test)
SET(tests
bind_test
bind_dm_test
bind_eq_test
bind_const_test
bind_cv_test
bind_stateful_test
bind_dm2_test
bind_not_test
bind_rel_test
bind_function_test
bind_lookup_problem_test
bind_rv_sp_test
bind_dm3_test
bind_visit_test
bind_placeholder_test
bind_rvalue_test
bind_and_or_test
mem_fn_test
mem_fn_void_test
mem_fn_derived_test
mem_fn_eq_test
mem_fn_dm_test
mem_fn_rv_test
ref_fn_test
bind_fnobj2_test
bind_fn2_test
bind_mf2_test
bind_eq2_test
mem_fn_ref_test
bind_ref_test
bind_eq3_test
)
FOREACH(test ${tests})
boost_test_run(${test})
ENDFOREACH(test ${tests})
boost_test_compile(bind_unary_addr)