From a0a37bc6333acd48cf869caf0afd46a44b2abfb8 Mon Sep 17 00:00:00 2001 From: "Troy D. Straszheim" Date: Sat, 24 Jan 2009 18:57:20 +0000 Subject: merge of cmake build files from trunk per beman [SVN r50756] --- BuildSlave.cmake | 64 ++++++++++++ CMakeLists.txt | 243 ++++++++++++++++++++++++++++++++++++++++++++ doc/CMakeLists.txt | 3 + doc/src/CMakeLists.txt | 13 +++ libs/CMakeLists.txt | 57 +++++++++++ libs/accumulators | 2 +- libs/algorithm | 2 +- libs/any | 2 +- libs/array | 2 +- libs/asio | 2 +- libs/assign | 2 +- libs/bimap | 2 +- libs/bind | 2 +- libs/circular_buffer | 2 +- libs/compatibility | 2 +- libs/concept_check | 2 +- libs/config | 2 +- libs/conversion | 2 +- libs/crc | 2 +- libs/date_time | 2 +- libs/detail | 2 +- libs/disjoint_sets | 2 +- libs/dynamic_bitset | 2 +- libs/exception | 2 +- libs/foreach | 2 +- libs/format | 2 +- libs/function | 2 +- libs/function_types | 2 +- libs/functional | 2 +- libs/fusion | 2 +- libs/gil | 2 +- libs/graph | 2 +- libs/integer | 2 +- libs/io | 2 +- libs/iostreams | 2 +- libs/iterator | 2 +- libs/lambda | 2 +- libs/logic | 2 +- libs/math | 2 +- libs/mpi | 2 +- libs/mpl | 2 +- libs/multi_array | 2 +- libs/multi_index | 2 +- libs/numeric/CMakeLists.txt | 21 ++++ libs/numeric/conversion | 2 +- libs/numeric/interval | 2 +- libs/numeric/module.cmake | 1 + libs/numeric/ublas | 2 +- libs/optional | 2 +- libs/parameter | 2 +- libs/pool | 2 +- libs/preprocessor | 2 +- libs/program_options | 2 +- libs/property_map | 2 +- libs/proto | 2 +- libs/ptr_container | 2 +- libs/python | 2 +- libs/random | 2 +- libs/range | 2 +- libs/rational | 2 +- libs/regex | 2 +- libs/serialization | 2 +- libs/signals | 2 +- libs/smart_ptr | 2 +- libs/spirit | 2 +- libs/statechart | 2 +- libs/static_assert | 2 +- libs/system | 2 +- libs/test | 2 +- libs/thread | 2 +- libs/timer | 2 +- libs/tokenizer | 2 +- libs/tr1 | 2 +- libs/tuple | 2 +- libs/type_traits | 2 +- libs/typeof | 2 +- libs/units | 2 +- libs/unordered | 2 +- libs/utility | 2 +- libs/variant | 2 +- libs/wave | 2 +- libs/xpressive | 2 +- tools/CMakeLists.txt | 82 +++++++++++++++ tools/bcp | 2 +- tools/quickbook | 2 +- 85 files changed, 561 insertions(+), 77 deletions(-) create mode 100644 BuildSlave.cmake create mode 100644 CMakeLists.txt create mode 100644 doc/CMakeLists.txt create mode 100644 doc/src/CMakeLists.txt create mode 100644 libs/CMakeLists.txt create mode 100644 libs/numeric/CMakeLists.txt create mode 100644 libs/numeric/module.cmake create mode 100644 tools/CMakeLists.txt diff --git a/BuildSlave.cmake b/BuildSlave.cmake new file mode 100644 index 0000000000..ec8a125390 --- /dev/null +++ b/BuildSlave.cmake @@ -0,0 +1,64 @@ +########################################################################## +# Boost Build Slave Support # +########################################################################## +# Copyright (C) 2008 Troy D. Straszheim # +# # +# Distributed under the Boost Software License, Version 1.0. # +# See accompanying file LICENSE_1_0.txt or copy at # +# http://www.boost.org/LICENSE_1_0.txt # +########################################################################## +# +# Quick configuration of build slaves. +# +# 1. Copy this file to your (empty, newly created) build directory +# 2. Customize below where you see CUSTOMIZE +# 3. Use this file to populate your build directory. From the build +# directory execute: +# +# cmake -C path/to/this/file ../path/to/source/directory +# +# e.g. +# +# cmake -C BuildSlave.cmake ../src +# + +message (STATUS "Reading initial cache for build slaves.") + +# +# CUSTOMIZE +# +set(BOOST_BUILD_SLAVE_CONTACT_INFO "buildmeister@example.com" + CACHE STRING "who to contact with questions" FORCE) + +set(BOOST_BUILD_SLAVE_HOSTNAME "descriptive.name.of.host.example.com" + CACHE STRING "descriptive hostname" FORCE) + +# +# CUSTOMIZE: Either set this to the path of an existing file +# (relative to build directory) or create the file slave-description.txt +# +set(BOOST_BUILD_SLAVE_DETAILS_FILE "slave-description.txt" + CACHE STRING "file containing details about the build/platform" FORCE) + +# +# Below this line oughtn't require customization. +# +if(EXISTS ${BOOST_BUILD_SLAVE_DETAILS_FILE}) + message(STATUS "Will take build details from ${BOOST_BUILD_SLAVE_DETAILS_FILE}") +else(EXISTS ${BOOST_BUILD_SLAVE_DETAILS_FILE}) + message(FATAL_ERROR "Please configure BOOST_BUILD_SLAVE_DETAILS_FILE (${BOOST_BUILD_SLAVE_DETAILS_FILE}) and create this file") +endif(EXISTS ${BOOST_BUILD_SLAVE_DETAILS_FILE}) + +if(WIN32) + set(CMAKE_GENERATOR "NMake Makefiles" CACHE INTERNAL "generator" FORCE) + set(CMAKE_MAKE_PROGRAM "nmake" CACHE INTERNAL "nmake" FORCE) +endif(WIN32) + +set(BUILD_TESTING ON + CACHE BOOL "build testing" FORCE) + +set(BOOST_BUILD_SLAVE ON + CACHE BOOL "build slave mode" FORCE) + + + diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000000..711cc54986 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,243 @@ +########################################################################## +# CMake Build Rules for Boost # +########################################################################## +# Copyright (C) 2007, 2008 Douglas Gregor # +# Copyright (C) 2007 Troy Straszheim # +# # +# Distributed under the Boost Software License, Version 1.0. # +# See accompanying file LICENSE_1_0.txt or copy at # +# http://www.boost.org/LICENSE_1_0.txt # +########################################################################## +# Basic Usage: # +# # +# On Unix variants: # +# ccmake BOOST_DIRECTORY # +# # +# (c)onfigure options to your liking, then (g)enerate # +# makefiles. Use "make" to build, "make test" to test, "make # +# install" to install, and "make package" to build binary # +# packages. # +# # +# On Windows: # +# run the CMake GNU, load the Boost directory, and generate # +# project files or makefiles for your environment. # +# # +# For more information about CMake, see http://www.cmake.org # +########################################################################## +cmake_minimum_required(VERSION 2.6.0 FATAL_ERROR) +project(Boost) + + +########################################################################## +# Post a warning to those attempting to use the CMake Build system. When # +# the build system stabilizes this can be removed. # +########################################################################## +if (NOT CMAKE_IS_EXPERIMENTAL) +message(STATUS "##########################################################################") +message(STATUS " THE CMAKE BUILD SYSTEM IS CURRENTLY UNDER DEVELOPMENT. PLEASE USE THE ") +message(STATUS " BJAM BASED SYSTEM INSTEAD TO BUILD A PRODUCTION VERSION OF BOOST. IF YOU ") +message(STATUS " STILL WANT TO TRY IT OUT INVOKE CMake WITH '-DCMAKE_IS_EXPERIMENTAL=TRUE'") +message(STATUS " ARGUMENT. After this first run of cmake you will no longer have to supply") +message(STATUS " the argument unless you need to run a cmake on a clean build directory.") +message(STATUS "##########################################################################") +message(FATAL_ERROR "") +endif (NOT CMAKE_IS_EXPERIMENTAL) + +########################################################################## +# Version information # +########################################################################## +set(BOOST_VERSION_MAJOR 1) +set(BOOST_VERSION_MINOR 38) +set(BOOST_VERSION_SUBMINOR 0) +set(BOOST_VERSION "${BOOST_VERSION_MAJOR}.${BOOST_VERSION_MINOR}.${BOOST_VERSION_SUBMINOR}") +########################################################################## + +# Put the libaries and binaries that get built into directories at the +# top of the build tree rather than in hard-to-find leaf +# directories. This simplifies manual testing and the use of the build +# tree rather than installed Boost libraries. +SET(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) +SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) +SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) + +########################################################################## +# Boost CMake modules # +########################################################################## +list(APPEND CMAKE_MODULE_PATH ${Boost_SOURCE_DIR}/tools/build/CMake) +include(BoostUtils) +include(BoostConfig) +include(BoostBuildSlave) +include(BoostCore) +include(BoostDocs) +include(BoostTesting) +########################################################################## + +########################################################################## +# Build Features and Variants # +########################################################################## + +# Determine default settings for the variable BUILD_feature options +if (MSVC) + set(BUILD_SINGLE_THREADED_DEFAULT OFF) +else () + set(BUILD_SINGLE_THREADED_DEFAULT OFF) +endif () + +# User-level options deciding which variants we will build. +option(BUILD_STATIC "Whether to build static libraries" ON) +option(BUILD_SHARED "Whether to build shared libraries" ON) +option(BUILD_DEBUG "Whether to build debugging libraries" ON) +option(BUILD_RELEASE "Whether to build release libraries" ON) +option(BUILD_SINGLE_THREADED "Whether to build single-threaded libraries" + ${BUILD_SINGLE_THREADED_DEFAULT}) +option(BUILD_MULTI_THREADED "Whether to build multi-threaded libraries" ON) + +# For now, we only actually support static/dynamic run-time variants for +# Visual C++. Provide both options for Visual C++ users, but just fix +# the values of the variables for all other platforms. +if(MSVC) + option(BUILD_STATIC_RUNTIME "Whether to build libraries linking against the static runtime" ON) + option(BUILD_DYNAMIC_RUNTIME "Whether to build libraries linking against the dynamic runtime" ON) +else(MSVC) + set(BUILD_STATIC_RUNTIME OFF) + set(BUILD_DYNAMIC_RUNTIME ON) +endif(MSVC) + +# The default set of library variants that we will be building +boost_add_default_variant(RELEASE DEBUG) +boost_add_default_variant(STATIC SHARED) +boost_add_default_variant(SINGLE_THREADED MULTI_THREADED) +boost_add_default_variant(DYNAMIC_RUNTIME STATIC_RUNTIME) + +# Extra features used by some libraries +set(BUILD_PYTHON_NODEBUG ON) +boost_add_extra_variant(PYTHON_NODEBUG PYTHON_DEBUG) +########################################################################## + +########################################################################## +# Installation # +########################################################################## +if(BOOST_VERSION_SUBMINOR GREATER 0) + set(BOOST_HEADER_DIR + "include/boost-${BOOST_VERSION_MAJOR}_${BOOST_VERSION_MINOR}_${BOOST_VERSION_SUBMINOR}") +else(BOOST_VERSION_SUBMINOR GREATER 0) + set(BOOST_HEADER_DIR + "include/boost-${BOOST_VERSION_MAJOR}_${BOOST_VERSION_MINOR}") +endif(BOOST_VERSION_SUBMINOR GREATER 0) +install(DIRECTORY boost + DESTINATION ${BOOST_HEADER_DIR} + PATTERN "CVS" EXCLUDE + PATTERN ".svn" EXCLUDE) +# +# TDS 20080526: Getting a segfault here even with the ifs. At r45780, with these lines +# uncommented: +# 1. cmake the workspace +# 2. run ccmake and turn OFF BUILD_MULTI_THREADED and BUILD_SHARED +# 3. 'c' to configure +# 4. 'g' to generate.... segfault. +# 5. run rebuild_cache at the command line: no segfault this time. +# +# With these lines commented out, step 4 above does not segfault. +# +#if (NOT TEST_INSTALLED_TREE) + # If I don't have if around this, I get a seg fault +# install(EXPORT boost-targets DESTINATION "lib/Boost${BOOST_VERSION}") +#endif (NOT TEST_INSTALLED_TREE) +########################################################################## + +########################################################################## +# Binary packages # +########################################################################## +set(CPACK_PACKAGE_NAME "Boost") +set(CPACK_PACKAGE_VENDOR "Boost.org") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Boost ${BOOST_VERSION}") + +if (EXISTS "${Boost_SOURCE_DIR}/README.txt") + message(STATUS "Using generic cpack package description file.") + set(CPACK_PACKAGE_DESCRIPTION_FILE "${Boost_SOURCE_DIR}/README.txt") + set(CPACK_RESOURCE_FILE_README "${Boost_SOURCE_DIR}/README.txt") +endif () + +set(CPACK_RESOURCE_FILE_LICENSE "${Boost_SOURCE_DIR}/LICENSE_1_0.txt") +if (EXISTS "${Boost_SOURCE_DIR}/Welcome.txt") + message(STATUS "Using generic cpack welcome file.") + set(CPACK_RESOURCE_FILE_WELCOME "${Boost_SOURCE_DIR}/Welcome.txt") +endif() + +set(CPACK_PACKAGE_VERSION "${BOOST_VERSION}") +set(CPACK_PACKAGE_VERSION_MAJOR "${BOOST_VERSION_MAJOR}") +set(CPACK_PACKAGE_VERSION_MINOR "${BOOST_VERSION_MINOR}") +set(CPACK_PACKAGE_VERSION_PATCH "${BOOST_VERSION_SUBMINOR}") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "Boost") + +if(WIN32 AND NOT UNIX) + # There is a bug in NSI that does not handle full unix paths properly. Make + # sure there is at least one set of four (4) backlasshes. + # NOTE: No Boost icon yet +# set(CPACK_PACKAGE_ICON "${Boost_SOURCE_DIR}/tools/build/CMake\\\\InstallIcon.bmp") +# set(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\\\MyExecutable.exe") + set(CPACK_NSIS_DISPLAY_NAME "Boost ${BOOST_VERSION_MAJOR}.${BOOST_VERSION_MINOR}.${BOOST_VERSION_SUBMINOR}") + set(CPACK_NSIS_HELP_LINK "http:\\\\\\\\www.boost.org") + set(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\\\\\www.boost.org") + set(CPACK_NSIS_CONTACT "boost-users@lists.boost.org") + set(CPACK_NSIS_MODIFY_PATH ON) + + # Encode the compiler name in the package + if (MSVC60) + set(CPACK_PACKAGE_FILE_NAME "Boost-${BOOST_VERSION}-vc6") + set(CPACK_NSIS_DISPLAY_NAME "${CPACK_NSIS_DISPLAY_NAME} for Microsoft Visual C++ 6") + elseif (MSVC70) + set(CPACK_PACKAGE_FILE_NAME "Boost-${BOOST_VERSION}-vc7") + set(CPACK_NSIS_DISPLAY_NAME "${CPACK_NSIS_DISPLAY_NAME} for Microsoft Visual Studio 2002") + elseif (MSVC71) + set(CPACK_PACKAGE_FILE_NAME "Boost-${BOOST_VERSION}-vc71") + set(CPACK_NSIS_DISPLAY_NAME "${CPACK_NSIS_DISPLAY_NAME} for Microsoft Visual Studio 2003") + elseif (MSVC80) + set(CPACK_PACKAGE_FILE_NAME "Boost-${BOOST_VERSION}-vc8") + set(CPACK_NSIS_DISPLAY_NAME "${CPACK_NSIS_DISPLAY_NAME} for Microsoft Visual Studio 2005") + elseif (MSVC90) + set(CPACK_PACKAGE_FILE_NAME "Boost-${BOOST_VERSION}-vc9") + set(CPACK_NSIS_DISPLAY_NAME "${CPACK_NSIS_DISPLAY_NAME} for Microsoft Visual Studio 2008") + elseif (BORLAND) + set(CPACK_PACKAGE_FILE_NAME "Boost-${BOOST_VERSION}-borland") + set(CPACK_NSIS_DISPLAY_NAME "${CPACK_NSIS_DISPLAY_NAME} for Borland C++ Builder") + endif (MSVC60) + set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "${CPACK_NSIS_DISPLAY_NAME}") +endif(WIN32 AND NOT UNIX) +include(CPack) + +if(COMMAND cpack_configure_downloads) + cpack_configure_downloads( + "http://www.osl.iu.edu/~dgregor/Boost-CMake/${BOOST_VERSION}/" + ALL ADD_REMOVE) +endif() +########################################################################## + +########################################################################## +# Building Boost libraries # +########################################################################## +# Always include the directory where Boost's include files will be. +if (TEST_INSTALLED_TREE) + # Use the headers from the installation directory + include_directories("${CMAKE_INSTALL_PREFIX}/${BOOST_HEADER_DIR}") +else (TEST_INSTALLED_TREE) + # Use the headers directly from the Boost source tree (in boost/) + include_directories(${Boost_SOURCE_DIR}) +endif (TEST_INSTALLED_TREE) + +# Boost.Build version 2 does this due to trouble with autolinking +# during building and testing. +# TODO: See if we can actually use auto-linking in our regression tests. +add_definitions(-DBOOST_ALL_NO_LIB=1) + +# Add build rules for documentation +add_subdirectory(doc) + +# Add build rules for all of the Boost libraries +add_subdirectory(${BOOST_LIBS_DIR}) + +# Add build rules for all of the Boost tools +# TODO: On hold while I work on the modularity code +add_subdirectory(tools) +########################################################################## + diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt new file mode 100644 index 0000000000..46d3147238 --- /dev/null +++ b/doc/CMakeLists.txt @@ -0,0 +1,3 @@ +if (BUILD_DOCUMENTATION) + add_subdirectory(src) +endif () diff --git a/doc/src/CMakeLists.txt b/doc/src/CMakeLists.txt new file mode 100644 index 0000000000..3904232256 --- /dev/null +++ b/doc/src/CMakeLists.txt @@ -0,0 +1,13 @@ +if (BUILD_DOCUMENTATION_HTML) + # Install style sheets and the main Boost logo + install(FILES boostbook.css docutils.css reference.css ../../boost.png + DESTINATION share/boost-${BOOST_VERSION}/html) + + # Install images + install(DIRECTORY images + DESTINATION share/boost-${BOOST_VERSION}/html + COMPONENT Core + PATTERN "CVS" EXCLUDE + PATTERN ".svn" EXCLUDE) +endif () + diff --git a/libs/CMakeLists.txt b/libs/CMakeLists.txt new file mode 100644 index 0000000000..4e8f87367a --- /dev/null +++ b/libs/CMakeLists.txt @@ -0,0 +1,57 @@ +# Find each subdirectory containing a CMakeLists.txt file, and include +# it. This avoids the need to manually list which libraries in Boost +# have CMakeLists.txt files. + +# return a list of directories that we should add_subdirectory() +macro(BOOST_COLLECT_SUBPROJECT_DIRECTORY_NAMES varname filename) + file(GLOB BOOST_LIBRARY_CMAKE_FILES + RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*/${filename}") + foreach(BOOST_LIB_CMAKE_FILE ${BOOST_LIBRARY_CMAKE_FILES}) + get_filename_component(BOOST_LIB_DIR ${BOOST_LIB_CMAKE_FILE} PATH) + set(${varname} ${${varname}} ${BOOST_LIB_DIR}) + endforeach(BOOST_LIB_CMAKE_FILE ${BOOST_LIBRARY_CMAKE_FILES}) +endmacro(BOOST_COLLECT_SUBPROJECT_DIRECTORY_NAMES varname) + +macro(ADD_SUBDIRECTORIES prefix) + foreach(subdir ${ARGN}) + message(STATUS "${prefix}${subdir}") + add_subdirectory(${subdir}) + endforeach(subdir ${ARGN}) +endmacro(ADD_SUBDIRECTORIES prefix) + +# Find all of the subdirectories with .cmake files in them. These are +# the libraries with dependencies. +boost_collect_subproject_directory_names(BOOST_MODULE_DIRS "module.cmake") +foreach(subdir ${BOOST_MODULE_DIRS}) + include("${CMAKE_CURRENT_SOURCE_DIR}/${subdir}/module.cmake") +endforeach(subdir) + +# Find all of the subdirectories with CMakeLists.txt files in +# them. This contains all of the Boost libraries. +boost_collect_subproject_directory_names(BOOST_SUBPROJECT_DIRS "CMakeLists.txt") + +# Add all of the Boost projects in reverse topological order, so that +# a library's dependencies show up before the library itself. +set(CPACK_INSTALL_CMAKE_COMPONENTS_ALL) +list(SORT BOOST_SUBPROJECT_DIRS) +topological_sort(BOOST_SUBPROJECT_DIRS BOOST_ _DEPENDS) +add_subdirectories(" + " ${BOOST_SUBPROJECT_DIRS}) + +# Write out a GraphViz file containing inter-library dependencies. +set(BOOST_DEPENDENCY_GRAPHVIZ_FILE "${Boost_BINARY_DIR}/dependencies.dot") +file(WRITE ${BOOST_DEPENDENCY_GRAPHVIZ_FILE} "digraph boost {\n") +foreach(SUBDIR ${BOOST_SUBPROJECT_DIRS}) + string(TOUPPER "BOOST_${SUBDIR}_COMPILED_LIB" BOOST_COMPILED_LIB_VAR) + if (${BOOST_COMPILED_LIB_VAR}) + file(APPEND ${BOOST_DEPENDENCY_GRAPHVIZ_FILE} " \"${SUBDIR}\" [style=\"filled\" fillcolor=\"#A3A27C\" shape=\"box\"];\n ") + endif (${BOOST_COMPILED_LIB_VAR}) + string(TOUPPER "BOOST_${SUBDIR}_DEPENDS" DEPENDS_VAR) + if(DEFINED ${DEPENDS_VAR}) + foreach(DEP ${${DEPENDS_VAR}}) + file(APPEND ${BOOST_DEPENDENCY_GRAPHVIZ_FILE} + " \"${SUBDIR}\" -> \"${DEP}\";\n") + endforeach() + endif() +endforeach() +file(APPEND ${BOOST_DEPENDENCY_GRAPHVIZ_FILE} " \"test\" [style=\"filled\" fillcolor=\"#A3A27C\" shape=\"box\"];\n ") +file(APPEND ${BOOST_DEPENDENCY_GRAPHVIZ_FILE} "}\n") diff --git a/libs/accumulators b/libs/accumulators index d045f6ca8e..a1700a34c0 160000 --- a/libs/accumulators +++ b/libs/accumulators @@ -1 +1 @@ -Subproject commit d045f6ca8ea1ec56b04df6c6c7f30ab837a3dd2a +Subproject commit a1700a34c03e16b80640e3a272443ce8c03231bf diff --git a/libs/algorithm b/libs/algorithm index 98a8b08afb..c33935fa1f 160000 --- a/libs/algorithm +++ b/libs/algorithm @@ -1 +1 @@ -Subproject commit 98a8b08afb9c3b5779c0f88ceec24f02ad38a444 +Subproject commit c33935fa1fbc6b7bf394de8f2689349e74a88735 diff --git a/libs/any b/libs/any index f2f981388f..873a016568 160000 --- a/libs/any +++ b/libs/any @@ -1 +1 @@ -Subproject commit f2f981388fbdf1865d77d764fe33f6bbfba068c4 +Subproject commit 873a016568bf4c3233a8fac7a37a97d3a5459bb6 diff --git a/libs/array b/libs/array index e7122b3f20..3d20bb1310 160000 --- a/libs/array +++ b/libs/array @@ -1 +1 @@ -Subproject commit e7122b3f207d6cb697ba61ffb37ce033378260cb +Subproject commit 3d20bb1310193af12e842bca41a5e5465e8f172a diff --git a/libs/asio b/libs/asio index 51be01775f..9be4e6992e 160000 --- a/libs/asio +++ b/libs/asio @@ -1 +1 @@ -Subproject commit 51be01775f8b57cea5063a532b5005c600b365e0 +Subproject commit 9be4e6992e7fbefa44e72fff8ec13ab714040a0a diff --git a/libs/assign b/libs/assign index afa4b560a0..6a98dd41ea 160000 --- a/libs/assign +++ b/libs/assign @@ -1 +1 @@ -Subproject commit afa4b560a0f6ff02cf87d7ebdc898409d00ced30 +Subproject commit 6a98dd41eadc6d684fe8915b079e1c2944ea0a12 diff --git a/libs/bimap b/libs/bimap index 3daa894cf5..8c16371c78 160000 --- a/libs/bimap +++ b/libs/bimap @@ -1 +1 @@ -Subproject commit 3daa894cf5111e4685aafaaf5c69df5141e7616f +Subproject commit 8c16371c783ada0aec1e33ed43c29770953341b0 diff --git a/libs/bind b/libs/bind index 45720b6f2d..85d146117e 160000 --- a/libs/bind +++ b/libs/bind @@ -1 +1 @@ -Subproject commit 45720b6f2df094dfbb9c74a381436d16f1aa8f22 +Subproject commit 85d146117ea6c54303d54e8db40d16dc20a8ae6d diff --git a/libs/circular_buffer b/libs/circular_buffer index 8a115a066a..92c290536e 160000 --- a/libs/circular_buffer +++ b/libs/circular_buffer @@ -1 +1 @@ -Subproject commit 8a115a066a2fe37075a28e8bd7ae861071e7ca4a +Subproject commit 92c290536e5930c49fe4dc081ca5979f0b8e1d48 diff --git a/libs/compatibility b/libs/compatibility index 0cbae63142..c40f64cadb 160000 --- a/libs/compatibility +++ b/libs/compatibility @@ -1 +1 @@ -Subproject commit 0cbae63142d21a69dd849a4ab6e3ea59f5c5666a +Subproject commit c40f64cadb218cf73b5215e8be8e7fb97cadd05e diff --git a/libs/concept_check b/libs/concept_check index 3dcaf09ecf..2fbf9d1375 160000 --- a/libs/concept_check +++ b/libs/concept_check @@ -1 +1 @@ -Subproject commit 3dcaf09ecf2110eda24385e674cfd9a6c2cd85c7 +Subproject commit 2fbf9d137577ef6ea0fd87003fe987fc234c41d6 diff --git a/libs/config b/libs/config index d379865f42..bc97209574 160000 --- a/libs/config +++ b/libs/config @@ -1 +1 @@ -Subproject commit d379865f42f5190d6e1bdff796140b2fe4703c5e +Subproject commit bc97209574aa53d2f8f7d23b3507e24a9fed07d6 diff --git a/libs/conversion b/libs/conversion index 98a67d93f3..fb681bb0ea 160000 --- a/libs/conversion +++ b/libs/conversion @@ -1 +1 @@ -Subproject commit 98a67d93f3f1b253e22c743f82bd48df5107e1d1 +Subproject commit fb681bb0eabdd75ee60eff434eb949cb6965890a diff --git a/libs/crc b/libs/crc index 006db09741..709b3b7a34 160000 --- a/libs/crc +++ b/libs/crc @@ -1 +1 @@ -Subproject commit 006db0974168cc1aeb70883215dd169da7132b6c +Subproject commit 709b3b7a343c07aceede0a50835036580ee15768 diff --git a/libs/date_time b/libs/date_time index 86a65b062a..983db9f225 160000 --- a/libs/date_time +++ b/libs/date_time @@ -1 +1 @@ -Subproject commit 86a65b062a90c860fd5de9375e9f11e9cc6911fa +Subproject commit 983db9f225a99a29d8ace9750b3c26c20d66d1bd diff --git a/libs/detail b/libs/detail index c0fb2515b0..9d2dd3f219 160000 --- a/libs/detail +++ b/libs/detail @@ -1 +1 @@ -Subproject commit c0fb2515b03a6ce78b6721e5255d5a7001133f12 +Subproject commit 9d2dd3f2190f69fbf530df9a2fa4faeebf138254 diff --git a/libs/disjoint_sets b/libs/disjoint_sets index 9fdf4a0db5..208ff6cd2f 160000 --- a/libs/disjoint_sets +++ b/libs/disjoint_sets @@ -1 +1 @@ -Subproject commit 9fdf4a0db5cb810a7c0a6a62f1d9a7ee69f20ec8 +Subproject commit 208ff6cd2f57c3296757af21a66ca6cc3ccc00fc diff --git a/libs/dynamic_bitset b/libs/dynamic_bitset index 16ca9cbb3c..b7eedd0f46 160000 --- a/libs/dynamic_bitset +++ b/libs/dynamic_bitset @@ -1 +1 @@ -Subproject commit 16ca9cbb3caf1210baca5f1ea0c4c254542cbaef +Subproject commit b7eedd0f46cdef22750f110e90b9ccdccba69ca8 diff --git a/libs/exception b/libs/exception index 1871333223..fa30904618 160000 --- a/libs/exception +++ b/libs/exception @@ -1 +1 @@ -Subproject commit 18713332234452f8c2d4459e39f6e50c242465b3 +Subproject commit fa309046184ce59395a6c3036fa3256d0cd6dde2 diff --git a/libs/foreach b/libs/foreach index ddf692ab28..b80e723dcc 160000 --- a/libs/foreach +++ b/libs/foreach @@ -1 +1 @@ -Subproject commit ddf692ab283df244fbf60b0ce2492cbdf836736f +Subproject commit b80e723dcc6247cb33d882ed7ff382e490bf407f diff --git a/libs/format b/libs/format index a9b9bf0887..756ce27479 160000 --- a/libs/format +++ b/libs/format @@ -1 +1 @@ -Subproject commit a9b9bf088701315538b6d09531a71887b30e2738 +Subproject commit 756ce274797d728e8bc6790e7869b965181b1c1c diff --git a/libs/function b/libs/function index 587658b047..2fd383cd2e 160000 --- a/libs/function +++ b/libs/function @@ -1 +1 @@ -Subproject commit 587658b047716dcdb33ef04fba8cc69324396e81 +Subproject commit 2fd383cd2e38533264a771ede4348a11a4441616 diff --git a/libs/function_types b/libs/function_types index 6f100429eb..cde937faaa 160000 --- a/libs/function_types +++ b/libs/function_types @@ -1 +1 @@ -Subproject commit 6f100429eb03410cff003f7c12051949561c1ab4 +Subproject commit cde937faaa0136699dcfec47757837c3806d42dd diff --git a/libs/functional b/libs/functional index c2fc561d41..ecdbca2dac 160000 --- a/libs/functional +++ b/libs/functional @@ -1 +1 @@ -Subproject commit c2fc561d41466f1ac4c1dda3e233f52e86ae5279 +Subproject commit ecdbca2dacb7e8c8161776eb012e1a609bc1fb59 diff --git a/libs/fusion b/libs/fusion index d004046aa5..5dff610007 160000 --- a/libs/fusion +++ b/libs/fusion @@ -1 +1 @@ -Subproject commit d004046aa5e14e84e55ede0ea706de520ea30318 +Subproject commit 5dff6100079ed126f7cecaa043bd6b3d89fb1189 diff --git a/libs/gil b/libs/gil index ab7f23636b..44871518f5 160000 --- a/libs/gil +++ b/libs/gil @@ -1 +1 @@ -Subproject commit ab7f23636bbd9c91908585d838af07420484a748 +Subproject commit 44871518f5fa4613fc2cacaed27cfc8e518feaaa diff --git a/libs/graph b/libs/graph index 06562ff825..4a3510bbf9 160000 --- a/libs/graph +++ b/libs/graph @@ -1 +1 @@ -Subproject commit 06562ff825a5fecd27f5eef50886d1f4fdf26011 +Subproject commit 4a3510bbf96e472b6b8219cf7de00c78cd6941cb diff --git a/libs/integer b/libs/integer index 1b9549693a..e6bbb33660 160000 --- a/libs/integer +++ b/libs/integer @@ -1 +1 @@ -Subproject commit 1b9549693acd7be526f9f71a7eefb20f5127be56 +Subproject commit e6bbb336608ac6762148a299b3b1b22ba1ada7e6 diff --git a/libs/io b/libs/io index eea2bb328c..9498b1b241 160000 --- a/libs/io +++ b/libs/io @@ -1 +1 @@ -Subproject commit eea2bb328c7852c42e9dcba52eec1550f7781190 +Subproject commit 9498b1b24188de52e2573cd9a5e494db5719c20a diff --git a/libs/iostreams b/libs/iostreams index ce5da3aceb..edb6742f9b 160000 --- a/libs/iostreams +++ b/libs/iostreams @@ -1 +1 @@ -Subproject commit ce5da3aceb847fc6eeac1470bf3ab31448f0cd16 +Subproject commit edb6742f9b932de1f8d31b06c48422b727917319 diff --git a/libs/iterator b/libs/iterator index 2ece3ac5c2..264c186eac 160000 --- a/libs/iterator +++ b/libs/iterator @@ -1 +1 @@ -Subproject commit 2ece3ac5c2e70aa01823ed638d043321caa2940b +Subproject commit 264c186eacbf06cf85b18fbe2227429ed9d385eb diff --git a/libs/lambda b/libs/lambda index 1f6ca994e6..b5b41af8f4 160000 --- a/libs/lambda +++ b/libs/lambda @@ -1 +1 @@ -Subproject commit 1f6ca994e68a7cabcb442fe7894c6b3bf3950d5d +Subproject commit b5b41af8f4631973ec8746686ccfcf694e37d984 diff --git a/libs/logic b/libs/logic index f1d8f513bf..951486c794 160000 --- a/libs/logic +++ b/libs/logic @@ -1 +1 @@ -Subproject commit f1d8f513bf0436ad6bea4a695b6f06c413352cfc +Subproject commit 951486c794b92d161a44884daf5662e0607496df diff --git a/libs/math b/libs/math index 77b98a0141..2b4b5feced 160000 --- a/libs/math +++ b/libs/math @@ -1 +1 @@ -Subproject commit 77b98a01418052cb015e9076447f73d8efc05cc4 +Subproject commit 2b4b5fecede7ada14ae33984247f88932df0c8fa diff --git a/libs/mpi b/libs/mpi index 95046cfeb9..881fa92992 160000 --- a/libs/mpi +++ b/libs/mpi @@ -1 +1 @@ -Subproject commit 95046cfeb917769ee98cf244f4032ceb3b827c1e +Subproject commit 881fa9299224550e36fa02d0bb6beb59e83ae43d diff --git a/libs/mpl b/libs/mpl index 3aca8ba417..951004474c 160000 --- a/libs/mpl +++ b/libs/mpl @@ -1 +1 @@ -Subproject commit 3aca8ba4179081b5bbcdbd69e94acfc0eca90e9e +Subproject commit 951004474cbba74ee7e3f6e77cec529ca58ddb40 diff --git a/libs/multi_array b/libs/multi_array index 805db3d46f..5479ef94c8 160000 --- a/libs/multi_array +++ b/libs/multi_array @@ -1 +1 @@ -Subproject commit 805db3d46fdeb6eb84fb9d273164424d073055c3 +Subproject commit 5479ef94c8de5b84bc30423e63353a210d483193 diff --git a/libs/multi_index b/libs/multi_index index f5976c1695..d3e74bc941 160000 --- a/libs/multi_index +++ b/libs/multi_index @@ -1 +1 @@ -Subproject commit f5976c16952348532f03be9766d82e2eb3ce4d57 +Subproject commit d3e74bc941916d5660827dd09ceb31cec64515c7 diff --git a/libs/numeric/CMakeLists.txt b/libs/numeric/CMakeLists.txt new file mode 100644 index 0000000000..94df5881a0 --- /dev/null +++ b/libs/numeric/CMakeLists.txt @@ -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 + numeric +) + +# Add a library target to the build system +boost_library_project( + numeric + # SRCDIRS + TESTDIRS conversion/test interval/test ublas/test + HEADERS ${lib_headers} + # DOCDIRS + # DESCRIPTION + MODULARIZED + # AUTHORS + # MAINTAINERS +) + + diff --git a/libs/numeric/conversion b/libs/numeric/conversion index 5963a9cb67..e0eee93fa5 160000 --- a/libs/numeric/conversion +++ b/libs/numeric/conversion @@ -1 +1 @@ -Subproject commit 5963a9cb673d73c79f439194d073fab9951c7374 +Subproject commit e0eee93fa55c2e4054d15173c442371a7886ca09 diff --git a/libs/numeric/interval b/libs/numeric/interval index 3142de747f..96b3e4edf1 160000 --- a/libs/numeric/interval +++ b/libs/numeric/interval @@ -1 +1 @@ -Subproject commit 3142de747f35ca5a6affc47bf988fc5042c85bc8 +Subproject commit 96b3e4edf18fb9d39967c4f96fe6f61055b5d7b8 diff --git a/libs/numeric/module.cmake b/libs/numeric/module.cmake new file mode 100644 index 0000000000..cab15aacd0 --- /dev/null +++ b/libs/numeric/module.cmake @@ -0,0 +1 @@ +boost_module(numeric DEPENDS logic serialization) \ No newline at end of file diff --git a/libs/numeric/ublas b/libs/numeric/ublas index 19d0e14743..c65fccf2d7 160000 --- a/libs/numeric/ublas +++ b/libs/numeric/ublas @@ -1 +1 @@ -Subproject commit 19d0e14743500a59c2ea208af91b60fffc6c0a55 +Subproject commit c65fccf2d7e39dca268b2219c91a7bcafea2c61a diff --git a/libs/optional b/libs/optional index e68e68276c..6b8df2a27d 160000 --- a/libs/optional +++ b/libs/optional @@ -1 +1 @@ -Subproject commit e68e68276ce6c34abf4f66121a97f1f21f9eff57 +Subproject commit 6b8df2a27d45c5f9b9286794700e7c7a631286e9 diff --git a/libs/parameter b/libs/parameter index 04cea6497d..3cf03f73ca 160000 --- a/libs/parameter +++ b/libs/parameter @@ -1 +1 @@ -Subproject commit 04cea6497d597ba200acbecd6469643eea77015c +Subproject commit 3cf03f73cac3530d82acd051c5c2d8194eeda90d diff --git a/libs/pool b/libs/pool index e152372ea6..b8de19b468 160000 --- a/libs/pool +++ b/libs/pool @@ -1 +1 @@ -Subproject commit e152372ea6060d10e9543f3b30df79fb1599d395 +Subproject commit b8de19b4688a3712aacebb19f32cf4d05600a16b diff --git a/libs/preprocessor b/libs/preprocessor index 32f92a1431..6cee861d4b 160000 --- a/libs/preprocessor +++ b/libs/preprocessor @@ -1 +1 @@ -Subproject commit 32f92a14311079cf0d54b220bf71ec58465c73c2 +Subproject commit 6cee861d4b835a6395bd57852820f799446bc2e8 diff --git a/libs/program_options b/libs/program_options index 2a16575f98..b55001a061 160000 --- a/libs/program_options +++ b/libs/program_options @@ -1 +1 @@ -Subproject commit 2a16575f984d931ec0d95cff8e5044f0f3725127 +Subproject commit b55001a061ccf9d906243bbe9e1b773b63619ea3 diff --git a/libs/property_map b/libs/property_map index a24948956b..e3a97f0fa3 160000 --- a/libs/property_map +++ b/libs/property_map @@ -1 +1 @@ -Subproject commit a24948956b19b5e9c3387a8c2922a361ce27d855 +Subproject commit e3a97f0fa3da28f175755cd74df12bd4d949a5fe diff --git a/libs/proto b/libs/proto index e51953e9a2..41de660699 160000 --- a/libs/proto +++ b/libs/proto @@ -1 +1 @@ -Subproject commit e51953e9a2968162daf8f98981c13552205e353f +Subproject commit 41de660699b05e6dd6810e259cf7e01f9d4545ad diff --git a/libs/ptr_container b/libs/ptr_container index fd6e7aa6fe..77a1e4d8c7 160000 --- a/libs/ptr_container +++ b/libs/ptr_container @@ -1 +1 @@ -Subproject commit fd6e7aa6fecf1f2e98f541711dee2a61a2b8c819 +Subproject commit 77a1e4d8c71485608ef44b358ca3239041154667 diff --git a/libs/python b/libs/python index 19846f5d79..29152af56c 160000 --- a/libs/python +++ b/libs/python @@ -1 +1 @@ -Subproject commit 19846f5d7932d2bbc5dd8df903729b3168a00780 +Subproject commit 29152af56cfc7489e9591d2516a41dc4af48c909 diff --git a/libs/random b/libs/random index 1fe2ce622e..7cee654ec2 160000 --- a/libs/random +++ b/libs/random @@ -1 +1 @@ -Subproject commit 1fe2ce622eefbf6a83c3065307496fa7d205bfd1 +Subproject commit 7cee654ec2c5f3ea1a4d6468808e6216ad25faa7 diff --git a/libs/range b/libs/range index 26b096f65d..12d904a5e4 160000 --- a/libs/range +++ b/libs/range @@ -1 +1 @@ -Subproject commit 26b096f65db8b158f03b564f6df7c17d8e09ac14 +Subproject commit 12d904a5e416ca92df6232b2ca377e9773644a16 diff --git a/libs/rational b/libs/rational index a51d8489c0..0867febd79 160000 --- a/libs/rational +++ b/libs/rational @@ -1 +1 @@ -Subproject commit a51d8489c0ca4585931fb6e6e43181517e39493e +Subproject commit 0867febd799fe647d1b836deeabd3e8c2edb1558 diff --git a/libs/regex b/libs/regex index 2d43c1b305..083ea3a6c7 160000 --- a/libs/regex +++ b/libs/regex @@ -1 +1 @@ -Subproject commit 2d43c1b305a4f73efaa171115c7bda7aa6cfdc80 +Subproject commit 083ea3a6c71090bbad9dfd14a49eb60b96ba4fea diff --git a/libs/serialization b/libs/serialization index c3d762e168..005bf3051b 160000 --- a/libs/serialization +++ b/libs/serialization @@ -1 +1 @@ -Subproject commit c3d762e168dae8f85ee2a2495005cd8759864633 +Subproject commit 005bf3051b9715bf61b302d7ed3a71076649681d diff --git a/libs/signals b/libs/signals index 2fd39d0771..551734976a 160000 --- a/libs/signals +++ b/libs/signals @@ -1 +1 @@ -Subproject commit 2fd39d0771139b47ee7b186bddc1d5d675e7858a +Subproject commit 551734976a8126b4e51db3d4464c1daf4ad98335 diff --git a/libs/smart_ptr b/libs/smart_ptr index 6f91ea87c3..55583ac749 160000 --- a/libs/smart_ptr +++ b/libs/smart_ptr @@ -1 +1 @@ -Subproject commit 6f91ea87c34add9108acfebe2e349d15f90596a5 +Subproject commit 55583ac7490bcbfcf9f33d7fd7a23787adda2e4c diff --git a/libs/spirit b/libs/spirit index 063723c814..57cca6bcc5 160000 --- a/libs/spirit +++ b/libs/spirit @@ -1 +1 @@ -Subproject commit 063723c81427131dcfc18fb54a02b083bb2a91e4 +Subproject commit 57cca6bcc5d0442bcad87962d087cfa90de8ab21 diff --git a/libs/statechart b/libs/statechart index 78a6451517..5357b28308 160000 --- a/libs/statechart +++ b/libs/statechart @@ -1 +1 @@ -Subproject commit 78a6451517ae9c22f5ba83398a377f4dfea8a435 +Subproject commit 5357b283083098ddbec558714750db2eb5ef7748 diff --git a/libs/static_assert b/libs/static_assert index 3488b2bdf2..9e411076c6 160000 --- a/libs/static_assert +++ b/libs/static_assert @@ -1 +1 @@ -Subproject commit 3488b2bdf29496654a009b0d0b1341cf66658b73 +Subproject commit 9e411076c6346cd0cd1fe76305ff8fd6c2cf3d8d diff --git a/libs/system b/libs/system index 40612c12db..e6f66bfc95 160000 --- a/libs/system +++ b/libs/system @@ -1 +1 @@ -Subproject commit 40612c12db86eb3c9e10fc2b09d74ca3ffcd4f36 +Subproject commit e6f66bfc95fbf43acbf3291e1e87930bbb89856f diff --git a/libs/test b/libs/test index ba139de9b1..ad148e9872 160000 --- a/libs/test +++ b/libs/test @@ -1 +1 @@ -Subproject commit ba139de9b1a30d6f33682cf4017cb06f3ac56ad9 +Subproject commit ad148e98727bf3644be8363b68cf3dbcc3cf6ddb diff --git a/libs/thread b/libs/thread index 8ab0d5acdd..fbdc23f482 160000 --- a/libs/thread +++ b/libs/thread @@ -1 +1 @@ -Subproject commit 8ab0d5acdd286da5efe622296d06fa0d3e1c4a10 +Subproject commit fbdc23f48248291ed8d203f863ef655388d76a91 diff --git a/libs/timer b/libs/timer index 2d2a2f47e1..b77f89da41 160000 --- a/libs/timer +++ b/libs/timer @@ -1 +1 @@ -Subproject commit 2d2a2f47e11cfcd2896d6aae09f5e4c79ea7d696 +Subproject commit b77f89da41664cda4bc59b9a1da52466f786dcff diff --git a/libs/tokenizer b/libs/tokenizer index 598fd68b1e..b42776b688 160000 --- a/libs/tokenizer +++ b/libs/tokenizer @@ -1 +1 @@ -Subproject commit 598fd68b1ee33c8add7e37112eeecc39c8f97dab +Subproject commit b42776b6881f5541210282c91c8b0b96dad3f767 diff --git a/libs/tr1 b/libs/tr1 index 293a9f3d47..65e36fc1dd 160000 --- a/libs/tr1 +++ b/libs/tr1 @@ -1 +1 @@ -Subproject commit 293a9f3d4760209e7e8c07572cb9229bb0bf05e6 +Subproject commit 65e36fc1ddc4d98a9f0030165592a603ab4203dd diff --git a/libs/tuple b/libs/tuple index 785ada83f4..99039c3db8 160000 --- a/libs/tuple +++ b/libs/tuple @@ -1 +1 @@ -Subproject commit 785ada83f401e09844476e85c9649feff4b87902 +Subproject commit 99039c3db8a714cf14eff018d1faaa1c1c6cc5d1 diff --git a/libs/type_traits b/libs/type_traits index 5744aef20c..407e286df1 160000 --- a/libs/type_traits +++ b/libs/type_traits @@ -1 +1 @@ -Subproject commit 5744aef20ce7a681cc38466d6eb3eb7868109d64 +Subproject commit 407e286df1d6c0b85575044896882fb1fe93d7de diff --git a/libs/typeof b/libs/typeof index cde21a588d..33ae5341c1 160000 --- a/libs/typeof +++ b/libs/typeof @@ -1 +1 @@ -Subproject commit cde21a588d6d8bf357f8e9f59fd98c16fcb3f122 +Subproject commit 33ae5341c11d6cbcb7e71801b6608ff98b4ea3c5 diff --git a/libs/units b/libs/units index c7aec03212..bf5f32b162 160000 --- a/libs/units +++ b/libs/units @@ -1 +1 @@ -Subproject commit c7aec0321261095ba6cd8b6f94e4fd78d084feae +Subproject commit bf5f32b16235681149aaf11c12ada00f68444671 diff --git a/libs/unordered b/libs/unordered index 0921f8076d..f7c664a359 160000 --- a/libs/unordered +++ b/libs/unordered @@ -1 +1 @@ -Subproject commit 0921f8076d3efe85cc72556218270cebeb38f6d9 +Subproject commit f7c664a35907a4b864a1507db46b212af760221d diff --git a/libs/utility b/libs/utility index ffbbf38e12..390372294a 160000 --- a/libs/utility +++ b/libs/utility @@ -1 +1 @@ -Subproject commit ffbbf38e12feceeb2d2dc1e7d5d9ed2c8cecee6a +Subproject commit 390372294a130aa96ea026747abf6f357fb2c1ef diff --git a/libs/variant b/libs/variant index 5edc863174..c7d1cccc13 160000 --- a/libs/variant +++ b/libs/variant @@ -1 +1 @@ -Subproject commit 5edc8631742b00be18db94ef605bc269da91119d +Subproject commit c7d1cccc13eb0fa4815f388e7b0e8b1cd2b82819 diff --git a/libs/wave b/libs/wave index a0085761eb..4e450deb3b 160000 --- a/libs/wave +++ b/libs/wave @@ -1 +1 @@ -Subproject commit a0085761eb88be624f0af4b764d15052e094874d +Subproject commit 4e450deb3b6253c5574ffea70a3097be802f8b2a diff --git a/libs/xpressive b/libs/xpressive index 14aff7b812..145d606cf0 160000 --- a/libs/xpressive +++ b/libs/xpressive @@ -1 +1 @@ -Subproject commit 14aff7b8123a095880f9034a6cfa420fba84aa31 +Subproject commit 145d606cf05e7fa2da3a88c3a54a1a0c2a88494c diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt new file mode 100644 index 0000000000..cc6a0db7b4 --- /dev/null +++ b/tools/CMakeLists.txt @@ -0,0 +1,82 @@ +# return a list of directories that we should add_subdirectory() +macro(boost_collect_lib_dependencies varname filename) + #message(STATUS "boost_collect_lib_dependencies.... ${Boost_SOURCE_DIR}/libs") + file(GLOB BOOST_LIBRARY_CMAKE_FILES + RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${Boost_SOURCE_DIR}/libs/*/${filename}") + foreach(BOOST_LIB_CMAKE_FILE ${BOOST_LIBRARY_CMAKE_FILES}) + #message(STATUS "-- BOOST_LIB_CMAKE_FILE: ${BOOST_LIB_CMAKE_FILE}") + get_filename_component(BOOST_LIB_DIR ${BOOST_LIB_CMAKE_FILE} PATH) + set(${varname} ${${varname}} ${BOOST_LIB_DIR}) + endforeach(BOOST_LIB_CMAKE_FILE ${BOOST_LIBRARY_CMAKE_FILES}) +endmacro(boost_collect_lib_dependencies varname) + + +# Find all of the subdirectories with .cmake files in them. These are +# the libraries with dependencies. +boost_collect_lib_dependencies(BOOST_MODULE_DIRS "module.cmake") +foreach(subdir ${BOOST_MODULE_DIRS}) +# message(STATUS "${Boost_SOURCE_DIR}/libs/${subdir}/module.cmake") + include("${Boost_SOURCE_DIR}/libs/${subdir}/module.cmake") +endforeach(subdir) + + +############################################################################### +# This macro is an internal utility macro +# TODO: Document this if it stays around +# +# +# example usage: +# boost_tool_dependencies( BOOST_DEPENDS test) +# +macro(boost_tool_dependencies) + parse_arguments(BOOST_TEST + "BOOST_DEPENDS" + "" + ${ARGN} + ) + set (THIS_TEST_DEPENDS_ALL "") + # message (STATUS "BOOST_TEST_BOOST_DEPENDS: ${BOOST_TEST_BOOST_DEPENDS}") + foreach(libname ${BOOST_TEST_BOOST_DEPENDS}) + # message(STATUS "libname: ${libname}") + string(TOUPPER "BOOST_${libname}_DEPENDS" THIS_PROJECT_DEPENDS) + # message(STATUS "${THIS_PROJECT_DEPENDS}: ${${THIS_PROJECT_DEPENDS}}") + # set(THIS_TEST_DEPENDS_ALL ${libname} ${${THIS_PROJECT_DEPENDS}} ) + # message(STATUS "${THIS_TEST_DEPENDS_ALL}: ${${THIS_TEST_DEPENDS_ALL}}") + + list(FIND THIS_TEST_DEPENDS_ALL ${libname} DEPDEP_INDEX) + if (DEPDEP_INDEX EQUAL -1) + list(APPEND THIS_TEST_DEPENDS_ALL ${libname}) + set(ADDED_DEPS TRUE) + endif() + string(TOUPPER "BOOST_${libname}_DEPENDS" THIS_PROJECT_DEPENDS) + # message(STATUS "${additional_lib}: ===> ${${THIS_PROJECT_DEPENDS}}") + set(ADDED_DEPS TRUE) + while (ADDED_DEPS) + set(ADDED_DEPS FALSE) + foreach(DEP ${THIS_TEST_DEPENDS_ALL}) + string(TOUPPER "BOOST_${DEP}_DEPENDS" DEP_DEPENDS) + foreach(DEPDEP ${${DEP_DEPENDS}}) + list(FIND THIS_TEST_DEPENDS_ALL ${DEPDEP} DEPDEP_INDEX) + if (DEPDEP_INDEX EQUAL -1) + list(APPEND THIS_TEST_DEPENDS_ALL ${DEPDEP}) + set(ADDED_DEPS TRUE) + endif() + endforeach() + endforeach() + endwhile() + # message(STATUS "-> Dependencies for ${libname}") + # message(STATUS "-> THIS_TEST_DEPENDS_ALL: ${THIS_TEST_DEPENDS_ALL}") + + endforeach(libname ${BOOST_TEST_BOOST_DEPENDS}) + foreach (include ${THIS_TEST_DEPENDS_ALL}) + #message(STATUS "include: ${include}") + include_directories("${Boost_SOURCE_DIR}/libs/${include}/include") + endforeach (include ${includes}) + +endmacro(boost_tool_dependencies) +# +############################################################################### + +# add_subdirectory(quickbook) +# add_subdirectory(wave) +add_subdirectory(bcp) \ No newline at end of file diff --git a/tools/bcp b/tools/bcp index d20df0a408..deed3885d0 160000 --- a/tools/bcp +++ b/tools/bcp @@ -1 +1 @@ -Subproject commit d20df0a4086af01f4c25e3d4380343e46f9a70f8 +Subproject commit deed3885d0951a9651dad2b461c3766e9e735f22 diff --git a/tools/quickbook b/tools/quickbook index cb639fb17d..08062df544 160000 --- a/tools/quickbook +++ b/tools/quickbook @@ -1 +1 @@ -Subproject commit cb639fb17d45cdc4b9ef14808b8f0b18d164c655 +Subproject commit 08062df544c0fa53fe506d388f1cafb97265e9b7 -- cgit v1.2.1