From ad3943473f04f583dccaa32c230e8eb4ed04321b Mon Sep 17 00:00:00 2001 From: bangerth Date: Sat, 21 Dec 2013 17:06:23 +0000 Subject: [PATCH] Add cmake configury stuff to also build the boost::iostreams library. git-svn-id: https://svn.dealii.org/trunk@32087 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/bundled/CMakeLists.txt | 1 + .../libs/iostreams/src/CMakeLists.txt | 26 +++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 deal.II/bundled/boost-1.49.0/libs/iostreams/src/CMakeLists.txt diff --git a/deal.II/bundled/CMakeLists.txt b/deal.II/bundled/CMakeLists.txt index 30e62c7d3f..f2891f1d71 100644 --- a/deal.II/bundled/CMakeLists.txt +++ b/deal.II/bundled/CMakeLists.txt @@ -32,6 +32,7 @@ IF(FEATURE_BOOST_BUNDLED_CONFIGURED) "${BOOST_FOLDER}/include\n" ) + ADD_SUBDIRECTORY(${BOOST_FOLDER}/libs/iostreams/src) ADD_SUBDIRECTORY(${BOOST_FOLDER}/libs/serialization/src) IF(DEAL_II_WITH_THREADS AND NOT DEAL_II_USE_CXX11) diff --git a/deal.II/bundled/boost-1.49.0/libs/iostreams/src/CMakeLists.txt b/deal.II/bundled/boost-1.49.0/libs/iostreams/src/CMakeLists.txt new file mode 100644 index 0000000000..0f5549192e --- /dev/null +++ b/deal.II/bundled/boost-1.49.0/libs/iostreams/src/CMakeLists.txt @@ -0,0 +1,26 @@ +## --------------------------------------------------------------------- +## $Id$ +## +## Copyright (C) 2013 by the deal.II authors +## +## This file is part of the deal.II library. +## +## The deal.II library is free software; you can use it, redistribute +## it, and/or modify it under the terms of the GNU Lesser General +## Public License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## The full text of the license can be found in the file LICENSE at +## the top level of the deal.II distribution. +## +## --------------------------------------------------------------------- + +SET(src_boost_iostreams + bzip2.cpp + file_descriptor.cpp + gzip.cpp + mapped_file.cpp + zlib.cpp + ) + +DEAL_II_ADD_LIBRARY(obj_boost_iostreams OBJECT ${src_boost_iostreams}) + -- 2.39.5