From 14e09a5456997eb66f6fa9971b70db51bd8ff81a 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 | 29 ----------------------- module.cmake | 1 - test/CMakeLists.txt | 24 ------------------- test/exception/CMakeLists.txt | 25 -------------------- test/unordered/CMakeLists.txt | 43 ----------------------------------- 5 files changed, 122 deletions(-) delete mode 100644 CMakeLists.txt delete mode 100644 module.cmake delete mode 100644 test/CMakeLists.txt delete mode 100644 test/exception/CMakeLists.txt delete mode 100644 test/unordered/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index b7dd577c..00000000 --- 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 - unordered_map.hpp - unordered_set.hpp - unordered -) - -# Add a library target to the build system -boost_library_project( - unordered - # SRCDIRS - TESTDIRS test - HEADERS ${lib_headers} - # DOCDIRS - # DESCRIPTION - MODULARIZED - # AUTHORS - # MAINTAINERS -) - - diff --git a/module.cmake b/module.cmake deleted file mode 100644 index 30e27698..00000000 --- a/module.cmake +++ /dev/null @@ -1 +0,0 @@ -boost_module(unordered DEPENDS config functional) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt deleted file mode 100644 index a941b96f..00000000 --- a/test/CMakeLists.txt +++ /dev/null @@ -1,24 +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(unordered BOOST_DEPENDS test) - -# GCC Compilers -IF(CMAKE_COMPILER_IS_GNUCC) - SET(test_compile_flags "-Wsign-promo -Wunused-parameter") -ENDIF(CMAKE_COMPILER_IS_GNUCC) - -# Intel Compiler flags -IF( ${CMAKE_CXX_COMPILER} MATCHES "icpc" ) - SET(test_compile_flags "${test_compile_flags} -strict_ansi -cxxlib-icc") -ENDIF( ${CMAKE_CXX_COMPILER} MATCHES "icpc" ) - -set (swap_compile_flags "${test_compile_flags} -DBOOST_UNORDERED_SWAP_METHOD=2") - - - -add_subdirectory(exception) -add_subdirectory(unordered) \ No newline at end of file diff --git a/test/exception/CMakeLists.txt b/test/exception/CMakeLists.txt deleted file mode 100644 index aacdf3d9..00000000 --- a/test/exception/CMakeLists.txt +++ /dev/null @@ -1,25 +0,0 @@ -# -# Copyright Troy D. Straszheim -# -# Distributed under the Boost Software License, Version 1.0. -# See http://www.boost.org/LICENSE_1_0.txt -# - -foreach(test - constructor_exception_tests - copy_exception_tests - assign_exception_tests - insert_exception_tests - erase_exception_tests - rehash_exception_tests - ) - boost_test_run(${test} - COMPILE_FLAGS ${test_compile_flags} - DEPENDS boost_unit_test_framework) -endforeach(test ${unordered_tests}) - -#-- run the swap test -boost_test_run(swap_exception_tests - COMPILE_FLAGS ${swap_compile_flags} - DEPENDS boost_unit_test_framework) - diff --git a/test/unordered/CMakeLists.txt b/test/unordered/CMakeLists.txt deleted file mode 100644 index 68d92be8..00000000 --- a/test/unordered/CMakeLists.txt +++ /dev/null @@ -1,43 +0,0 @@ -# -# Copyright Troy D. Straszheim -# -# Distributed under the Boost Software License, Version 1.0. -# See http://www.boost.org/LICENSE_1_0.txt -# -#------------------------------------------------------------------------------- -# Unordered Tests -foreach(test - fwd_set_test - fwd_map_test - compile_set - compile_map - simple_tests - equivalent_keys_tests - constructor_tests - copy_tests - move_tests - assign_tests - insert_tests - insert_stable_tests - unnecessary_copy_tests - erase_tests - erase_equiv_tests - find_tests - at_tests - bucket_tests - load_factor_tests - rehash_tests - equality_tests - ) - boost_test_run(${test} - COMPILE_FLAGS ${test_compile_flags} - DEPENDS boost_unit_test_framework) -endforeach() - -boost_test_run(link_test link_test_1.cpp link_test_2.cpp) - -#-- run the swap test -boost_test_run(swap_tests - COMPILE_FLAGS ${swap_compile_flags} - DEPENDS boost_unit_test_framework) -