forked from boostorg/concept_check
Continuing merge of CMake build system files into trunk with the encouragement of Doug Gregor
[SVN r49510]
This commit is contained in:
23
CMakeLists.txt
Normal file
23
CMakeLists.txt
Normal 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
1
module.cmake
Normal file
@@ -0,0 +1 @@
|
|||||||
|
boost_module(concept_check DEPENDS preprocessor concept)
|
6
test/CMakeLists.txt
Normal file
6
test/CMakeLists.txt
Normal 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)
|
Reference in New Issue
Block a user