2
0
mirror of https://github.com/boostorg/foreach.git synced 2026-02-02 21:02:11 +00:00

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 ddf692ab28
commit b80e723dcc
3 changed files with 56 additions and 0 deletions

21
CMakeLists.txt Normal file
View File

@@ -0,0 +1,21 @@
#----------------------------------------------------------------------------
# This file was automatically generated from the original CMakeLists.txt file
# Add a variable to hold the headers for the library
set (lib_headers
foreach.hpp
)
# Add a library target to the build system
boost_library_project(
foreach
# SRCDIRS
TESTDIRS test
HEADERS ${lib_headers}
# DOCDIRS
# DESCRIPTION
MODULARIZED
# AUTHORS
# MAINTAINERS
)

1
module.cmake Normal file
View File

@@ -0,0 +1 @@
boost_module(foreach DEPENDS range)

34
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,34 @@
boost_additional_test_dependencies(foreach BOOST_DEPENDS test )
set(TESTS
stl_byval
stl_byval_r
stl_byref
stl_byref_r
array_byval
array_byval_r
array_byref
array_byref_r
cstr_byval
cstr_byval_r
cstr_byref
cstr_byref_r
pair_byval
pair_byval_r
pair_byref
pair_byref_r
user_defined
call_once
rvalue_const
rvalue_const_r
rvalue_nonconst
rvalue_nonconst_r
dependent_type
misc)
foreach(test ${TESTS})
boost_test_run(${test})
endforeach(test ${TESTS})
boost_test_compile(noncopyable)