From: Matthias Maier Date: Fri, 13 Jan 2017 11:13:47 +0000 (-0600) Subject: CMake: Remove obsolete file X-Git-Tag: v8.5.0-rc1~250^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08eb8ccf354513996d171d14e04f081c64ad09a7;p=dealii.git CMake: Remove obsolete file --- diff --git a/cmake/macros/macro_deal_ii_add_dependencies.cmake b/cmake/macros/macro_deal_ii_add_dependencies.cmake deleted file mode 100644 index 6a8062a4a5..0000000000 --- a/cmake/macros/macro_deal_ii_add_dependencies.cmake +++ /dev/null @@ -1,31 +0,0 @@ -## --------------------------------------------------------------------- -## -## Copyright (C) 2012 - 2014 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. -## -## --------------------------------------------------------------------- - -# -# A small wrapper around ADD_DEPENDENCIES to add the specified dependencies -# to every ${target}_${build} target, where build runs through all build -# types specified in DEAL_II_BUILD_TYPES -# - -MACRO(DEAL_II_ADD_DEPENDENCIES _name _target) - - FOREACH(_build ${DEAL_II_BUILD_TYPES}) - STRING(TOLOWER ${_build} _build_lowercase) - ADD_DEPENDENCIES(${_name}.${_build_lowercase} - ${_target}.${_build_lowercase} - ) - ENDFOREACH() - -ENDMACRO()