diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index 127ae27..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -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 " - # MAINTAINERS -) - - diff --git a/module.cmake b/module.cmake deleted file mode 100644 index beb4837..0000000 --- a/module.cmake +++ /dev/null @@ -1 +0,0 @@ -boost_module(bind DEPENDS utility mpl detail config) \ No newline at end of file diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt deleted file mode 100644 index 9512e2e..0000000 --- a/test/CMakeLists.txt +++ /dev/null @@ -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) -