merge of cmake build files from trunk per beman

[SVN r50756]
This commit is contained in:
Troy D. Straszheim
2009-01-24 18:57:20 +00:00
parent 3dcaf09ecf
commit 2fbf9d1375
3 changed files with 32 additions and 0 deletions

23
CMakeLists.txt Normal file
View File

@@ -0,0 +1,23 @@
#----------------------------------------------------------------------------
# This file was automatically generated from the original CMakeLists.txt file
# Add a variable to hold the headers for the library
set (lib_headers
concept_check.hpp
concept_archetype.hpp
concept_check
)
# Add a library target to the build system
boost_library_project(
concept_check
# SRCDIRS
TESTDIRS test
HEADERS ${lib_headers}
# DOCDIRS
DESCRIPTION "Tools for generic programming."
MODULARIZED
AUTHORS "Jeremy Siek <jeremy.siek -at- gmail.com>"
# MAINTAINERS
)

1
module.cmake Normal file
View File

@@ -0,0 +1 @@
boost_module(concept_check DEPENDS preprocessor)

8
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,8 @@
boost_additional_test_dependencies(concept_check BOOST_DEPENDS utility)
# this fails but looks like it isn't the build
# boost_test_run(../stl_concept_covering)
boost_test_run(concept_check_test ../concept_check_test.cpp)
boost_test_run(class_concept_check_test ../class_concept_check_test.cpp)
boost_test_compile_fail(concept_check_fail_expected ../concept_check_fail_expected.cpp)
boost_test_compile_fail(class_concept_fail_expected ../class_concept_fail_expected.cpp)