diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index 951be8e..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,40 +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 - type_traits.hpp - type_traits -) - -# Add a library target to the build system -boost_library_project( - type_traits - # SRCDIRS - TESTDIRS test - HEADERS ${lib_headers} - # DOCDIRS - DESCRIPTION "Templates for fundamental properties of types." - MODULARIZED - AUTHORS "David Abrahams " - "Steve Cleary" - "Beman Dawes " - "Aleksey Gurtovoy " - "Howard Hinnant" - "Jesse Jones" - "Mat Marcus" - "Itay Maman" - "John Maddock " - "Alexander Nasonov " - "Thorsten Ottosen " - "Robert Ramey " - "Jeremy Siek " - # MAINTAINERS -) - - diff --git a/module.cmake b/module.cmake deleted file mode 100644 index c1f1b3c..0000000 --- a/module.cmake +++ /dev/null @@ -1 +0,0 @@ -boost_module(type_traits DEPENDS config static_assert) \ No newline at end of file diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt deleted file mode 100644 index 69fc8b9..0000000 --- a/test/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -# -# Copyright Troy D. Straszheim -# -# Distributed under the Boost Software License, Version 1.0. -# See http://www.boost.org/LICENSE_1_0.txt -# -file(GLOB TEST_FILES "*_test.cpp") -foreach(TEST_FILE ${TEST_FILES}) - get_filename_component(TEST_NAME ${TEST_FILE} NAME_WE) - boost_test_run(${TEST_NAME}) -endforeach(TEST_FILE ${TEST_FILES}) - -boost_test_run(udt_specialisations)