From 36e84d1fb7da94d301bafbade839415c77d4642e Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Thu, 6 Nov 2008 00:15:47 +0000 Subject: [PATCH] merged from trunk [SVN r49607] --- CMakeLists.txt | 25 +++++++++++++++++++++++++ test/CMakeLists.txt | 8 ++++++++ 2 files changed, 33 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 test/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..2241512 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,25 @@ +#---------------------------------------------------------------------------- +# This file was automatically generated from the original CMakeLists.txt file +# Add a variable to hold the headers for the library +set (lib_headers + integer.hpp + integer_fwd.hpp + integer_traits.hpp + integer +) + +# Add a library target to the build system +boost_library_project( + integer + # SRCDIRS + TESTDIRS test + HEADERS ${lib_headers} + # DOCDIRS + DESCRIPTION "The organization of boost integer headers and classes is designed to take advantage of types from the 1999 C standard without resorting to undefined behavior in terms of the 1998 C++ standard. The header makes the standard integer types safely available in namespace boost without placing any names in namespace std." + MODULARIZED + AUTHORS "Beman Dawes " + "Daryle Walker " + # MAINTAINERS +) + + diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt new file mode 100644 index 0000000..e332eb1 --- /dev/null +++ b/test/CMakeLists.txt @@ -0,0 +1,8 @@ +boost_test_run(cstdint_test cstdint_test.cpp) +boost_test_run(integer_mask_test integer_mask_test.cpp) +boost_test_run(integer_test integer_test.cpp) +boost_test_run(integer_traits_test integer_traits_test.cpp + DEPENDS boost_test_exec_monitor) +boost_test_run(issue_2134 issue_2134.cpp) +boost_test_run(static_log2_test static_log2_test.cpp) +boost_test_run(static_min_max_test static_min_max_test.cpp)