From baece0983f997f91a65622091f896f8d33334385 Mon Sep 17 00:00:00 2001 From: "Troy D. Straszheim" Date: Sat, 17 Oct 2009 02:07:38 +0000 Subject: [PATCH] rm cmake from trunk. I'm not entirely sure this is necessary to satisfy the inspect script, but I'm not taking any chances, and it is easy to put back [SVN r56942] --- CMakeLists.txt | 29 ---------------------------- module.cmake | 1 - test/CMakeLists.txt | 47 --------------------------------------------- 3 files changed, 77 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 e3f571f..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,29 +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 - exception.hpp - exception_ptr.hpp - exception -) - -# Add a library target to the build system -boost_library_project( - exception - # SRCDIRS - TESTDIRS test - HEADERS ${lib_headers} - DOCDIRS doc - DESCRIPTION "A library for transporting of arbitrary data in exception objects, and transporting of exceptions between threads." - MODULARIZED - AUTHORS "Emil Dotchevski " - # MAINTAINERS -) - - diff --git a/module.cmake b/module.cmake deleted file mode 100644 index 89d0eef..0000000 --- a/module.cmake +++ /dev/null @@ -1 +0,0 @@ -boost_module(exception DEPENDS smart_ptr detail utility tuple) \ No newline at end of file diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt deleted file mode 100644 index 779d10f..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(exception BOOST_DEPENDS test) - -boost_test_run(is_output_streamable_test) -boost_test_run(has_to_string_test) -boost_test_run(to_string_test) -boost_test_run(to_string_stub_test) -boost_test_compile_fail(to_string_fail) - -#exception - -boost_test_run(cloning_test) -boost_test_run(copy_exception_test) -boost_test_run(unknown_exception_test) -boost_test_run(exception_test) -#boost_test_run(boost_error_info_test) -boost_test_run(enable_error_info_test enable_error_info_test.cpp helper1.cpp) -boost_test_run(throw_exception_test throw_exception_test.cpp helper2.cpp) -boost_test_run(errno_test) -boost_test_run(error_info_test) -boost_test_run(diagnostic_information_test) -boost_test_compile_fail(exception_fail) -boost_test_compile_fail(throw_exception_fail) - -# Compile headers tests -set (compile_tests - diagnostic_information_hpp_test - error_info_hpp_test - exception_ptr_hpp_test - exception_hpp_test - get_error_info_hpp_test - info_hpp_test - info_tuple_hpp_test - to_string_hpp_test - to_string_stub_hpp_test - ) - -#-- Create a Compile test for each source -foreach(test ${compile_tests}) - boost_test_compile(${test} "${test}.cpp") -endforeach(test ${compile_tests}) -