forked from boostorg/type_traits
merge of cmake build files from trunk per beman
[SVN r50756]
This commit is contained in:
34
CMakeLists.txt
Normal file
34
CMakeLists.txt
Normal file
@ -0,0 +1,34 @@
|
||||
#----------------------------------------------------------------------------
|
||||
# This file was automatically generated from the original CMakeLists.txt file
|
||||
# Add a variable to hold the headers for the library
|
||||
set (lib_headers
|
||||
type_traits.hpp
|
||||
type_traits
|
||||
)
|
||||
|
||||
# Add a library target to the build system
|
||||
boost_library_project(
|
||||
type_traits
|
||||
# SRCDIRS
|
||||
TESTDIRS test
|
||||
HEADERS ${lib_headers}
|
||||
# DOCDIRS
|
||||
DESCRIPTION "Templates for fundamental properties of types."
|
||||
MODULARIZED
|
||||
AUTHORS "David Abrahams <dave -at- boostpro.com>"
|
||||
"Steve Cleary"
|
||||
"Beman Dawes <bdawes -at- acm.org>"
|
||||
"Aleksey Gurtovoy <agurtovoy -at- meta-comm.com>"
|
||||
"Howard Hinnant"
|
||||
"Jesse Jones"
|
||||
"Mat Marcus"
|
||||
"Itay Maman"
|
||||
"John Maddock <john -at- johnmaddock.co.uk>"
|
||||
"Alexander Nasonov <alexander.nasonov -at- gmail.com>"
|
||||
"Thorsten Ottosen <nesotto -at- cs.auc.dk>"
|
||||
"Robert Ramey <ramey -at- rrsd.com>"
|
||||
"Jeremy Siek <jeremy.siek -at- gmail.com>"
|
||||
# MAINTAINERS
|
||||
)
|
||||
|
||||
|
1
module.cmake
Normal file
1
module.cmake
Normal file
@ -0,0 +1 @@
|
||||
boost_module(type_traits DEPENDS config static_assert)
|
7
test/CMakeLists.txt
Normal file
7
test/CMakeLists.txt
Normal file
@ -0,0 +1,7 @@
|
||||
file(GLOB TEST_FILES "*_test.cpp")
|
||||
foreach(TEST_FILE ${TEST_FILES})
|
||||
get_filename_component(TEST_NAME ${TEST_FILE} NAME_WE)
|
||||
boost_test_run(${TEST_NAME})
|
||||
endforeach(TEST_FILE ${TEST_FILES})
|
||||
|
||||
boost_test_run(udt_specialisations)
|
Reference in New Issue
Block a user