From: Wolfgang Bangerth Date: Sat, 21 Dec 2013 17:06:23 +0000 (+0000) Subject: Add cmake configury stuff to also build the boost::iostreams library. X-Git-Tag: v8.2.0-rc1~1138 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cad4a66ede9ce8898b220caf4fe426ecb726e0c9;p=dealii.git 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 --- 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}) +