From cfc04ce11e23604dfd68e2c5a82b12b522fa4a8f Mon Sep 17 00:00:00 2001 From: "Troy D. Straszheim" Date: Sat, 17 Oct 2009 01:10:45 +0000 Subject: [PATCH] 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] --- CMakeLists.txt | 30 ------------------------------ module.cmake | 1 - test/CMakeLists.txt | 39 --------------------------------------- 3 files changed, 70 deletions(-) delete mode 100644 CMakeLists.txt delete mode 100644 module.cmake delete mode 100644 test/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index bd83261..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,30 +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 - iterator.hpp - iterator -) - -# Add a library target to the build system -boost_library_project( - iterator - # SRCDIRS - TESTDIRS test - HEADERS ${lib_headers} - # DOCDIRS - DESCRIPTION "A system of concepts which extend the C++ standard iterator requirementsand a framework of components for building iterators based on these extended concepts and includes several useful iterator adaptors." - MODULARIZED - AUTHORS "David Abrahams " - "Jeremy Siek " - "Thomas Witt " - # MAINTAINERS -) - - diff --git a/module.cmake b/module.cmake deleted file mode 100644 index 2e025e3..0000000 --- a/module.cmake +++ /dev/null @@ -1 +0,0 @@ -boost_module(iterator DEPENDS mpl type_traits function concept_check) \ No newline at end of file diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt deleted file mode 100644 index 1b0c5be..0000000 --- a/test/CMakeLists.txt +++ /dev/null @@ -1,39 +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(iterator BOOST_DEPENDS test tuple smart_ptr) - -# These first two tests will run last, and are expected to fail -# for many less-capable compilers. - -boost_test_compile_fail(interoperable_fail) -# test uses expected success, so that we catch unrelated -# compilation problems. -boost_test_run(is_convertible_fail) -boost_test_run(zip_iterator_test) - -# These tests should work for just about everything. -boost_test_compile(is_lvalue_iterator) -boost_test_compile(is_readable_iterator) -boost_test_compile(pointee) - -boost_test_run(unit_tests) -boost_test_run(concept_tests) -boost_test_run(iterator_adaptor_cc) -boost_test_run(iterator_adaptor_test) -boost_test_compile(iterator_archetype_cc) -boost_test_compile_fail(iter_archetype_default_ctor) -boost_test_compile_fail(lvalue_concept_fail) -boost_test_run(transform_iterator_test) -boost_test_run(indirect_iterator_test) -boost_test_compile(indirect_iter_member_types) -boost_test_run(filter_iterator_test) -boost_test_run(iterator_facade) -boost_test_run(reverse_iterator_test) -boost_test_run(counting_iterator_test) -boost_test_run(interoperable) -boost_test_run(iterator_traits_test) -boost_test_run(permutation_iterator_test)