From 08eb8ccf354513996d171d14e04f081c64ad09a7 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Fri, 13 Jan 2017 05:13:47 -0600 Subject: [PATCH] CMake: Remove obsolete file --- .../macro_deal_ii_add_dependencies.cmake | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 cmake/macros/macro_deal_ii_add_dependencies.cmake 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() -- 2.39.5