Continuing merge of CMake build system files into trunk with the encouragement of Doug Gregor

[SVN r49510]
This commit is contained in:
Michael A. Jackson
2008-11-01 13:15:41 +00:00
parent eb4c1f2587
commit 80de3d1903
3 changed files with 30 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 concept)

6
test/CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
# 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)