tuning up cmakefiles for unordered, utility

[SVN r53008]
This commit is contained in:
Troy D. Straszheim 2009-05-15 00:21:14 +00:00
parent 48cfd42123
commit eaaf17a88f
3 changed files with 50 additions and 1 deletions

View File

@ -17,7 +17,7 @@ set (lib_headers
boost_library_project(
utility
# SRCDIRS
TESTDIRS test swap/test
TESTDIRS test swap/test enable_if/test
HEADERS ${lib_headers}
# DOCDIRS
DESCRIPTION "Various small utilities for C++ programming."

View File

@ -0,0 +1,14 @@
foreach(T
constructors
dummy_arg_disambiguation
lazy
lazy_test
member_templates
namespace_disambiguation
no_disambiguation
partial_specializations
)
boost_test_run(${T} DEPENDS boost_test_exec_monitor)
endforeach()

35
swap/test/CMakeLists.txt Normal file
View File

@ -0,0 +1,35 @@
foreach(T
root_header_1 root_header_2
lib_header_1 lib_header_2
mixed_headers_1 mixed_headers_2)
boost_test_compile(${T})
endforeach()
# [ run primitive.cpp ../../../test/build//boost_test_exec_monitor/<link>static ]
foreach(T
primitive
specialized_in_boost
specialized_in_global
specialized_in_other
specialized_in_std
specialized_in_boost_and_other
std_bitset
std_dateorder
std_string
std_typeinfo_ptr
std_vector_of_boost
std_vector_of_global
std_vector_of_other
no_ambiguity_in_boost
array_of_array_of_class
array_of_array_of_int
array_of_class
array_of_int
array_of_template)
boost_test_run(${T} DEPENDS boost_test_exec_monitor)
endforeach()