merged from trunk

[SVN r49607]
This commit is contained in:
Eric Niebler
2008-11-06 00:15:47 +00:00
parent d8819d1b8e
commit c28088c912
2 changed files with 34 additions and 0 deletions

22
CMakeLists.txt Normal file
View File

@@ -0,0 +1,22 @@
#----------------------------------------------------------------------------
# This file was automatically generated from the original CMakeLists.txt file
# Add a variable to hold the headers for the library
set (lib_headers
)
# Add a library target to the build system
boost_library_project(
conversion
# SRCDIRS
TESTDIRS test
# HEADERS ${lib_headers}
# DOCDIRS
DESCRIPTION "Polymorphic and lexical casts"
# MODULARIZED
AUTHORS "David Abrahams <dave -at- boost-consulting.com>"
"Kevlin Henney"
# MAINTAINERS
)

12
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,12 @@
boost_test_run(implicit_cast)
boost_test_compile_fail(implicit_cast_fail)
boost_test_run(cast_test ../cast_test.cpp)
boost_test_run(numeric_cast_test ../numeric_cast_test.cpp)
boost_test_run(
lexical_cast_test
../lexical_cast_test.cpp
DEPENDS boost_unit_test_framework
)