Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • jakub.both/dune-common
  • samuel.burbulla/dune-common
  • patrick.jaap/dune-common
  • tobias.leibner/dune-common
  • alexander.mueller/dune-common
  • pipping/dune-common
  • Xinyun.Li/dune-common
  • felix.schindler/dune-common
  • simon.praetorius/dune-common
  • ani.anciaux-sedrakian/dune-common
  • henrik.stolzmann/dune-common
  • matthew.t.collins/dune-common
  • liam.keegan/dune-common
  • felix.mueller/dune-common
  • ansgar/dune-common
  • dominic/dune-common
  • lars.lubkoll/dune-common
  • exadune/dune-common
  • felix.gruber/dune-common
  • govind.sahai/dune-common
  • michael.sghaier/dune-common
  • core/dune-common
  • kilian.weishaupt/dune-common
  • markus.blatt/dune-common
  • joscha.podlesny/dune-common
  • tobias.meyer.andersen/dune-common
  • andreas.thune/dune-common
  • lars.bilke/dune-common
  • daniel.kienle/dune-common
  • lukas.renelt/dune-common
  • smuething/dune-common
  • stephan.hilb/dune-common
  • tkoch/dune-common
  • nils.dreier/dune-common
  • rene.milk/dune-common
  • lasse.hinrichsen/dune-common
  • yunus.sevinchan/dune-common
  • lisa_julia.nebel/dune-common
  • claus-justus.heine/dune-common
  • lorenzo.cerrone/dune-common
  • eduardo.bueno/dune-common
41 results
Show changes
Commits on Source (2)
Showing
with 19 additions and 4 deletions
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
# #
# A list of targets to use GMP with. # A list of targets to use GMP with.
# #
include_guard(GLOBAL)
# set HAVE_GMP for the config.h file # set HAVE_GMP for the config.h file
set(HAVE_GMP ${GMP_FOUND}) set(HAVE_GMP ${GMP_FOUND})
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
# #
# A list of targets to use METIS with. # A list of targets to use METIS with.
# #
include_guard(GLOBAL)
# register HAVE_METIS for config.h # register HAVE_METIS for config.h
set(HAVE_METIS ${METIS_FOUND}) set(HAVE_METIS ${METIS_FOUND})
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
# #
# A list of targets to use PTScotch with. # A list of targets to use PTScotch with.
# #
include_guard(GLOBAL)
# set HAVE_PTSCOTCH for config.h # set HAVE_PTSCOTCH for config.h
set(HAVE_PTSCOTCH ${PTScotch_FOUND}) set(HAVE_PTSCOTCH ${PTScotch_FOUND})
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
# #
# A list of targets to use ParMETIS with. # A list of targets to use ParMETIS with.
# #
include_guard(GLOBAL)
# set HAVE_PARMETIS for config.h # set HAVE_PARMETIS for config.h
set(HAVE_PARMETIS ${ParMETIS_FOUND}) set(HAVE_PARMETIS ${ParMETIS_FOUND})
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
# #
# A list of targets to use QuadMath with. # A list of targets to use QuadMath with.
# #
include_guard(GLOBAL)
# set HAVE_QUADMATH for config.h # set HAVE_QUADMATH for config.h
set(HAVE_QUADMATH ${QuadMath_FOUND}) set(HAVE_QUADMATH ${QuadMath_FOUND})
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
# #
# A list of targets to use SuiteSparse with. # A list of targets to use SuiteSparse with.
# #
include_guard(GLOBAL)
# set HAVE_SUITESPARSE for config.h # set HAVE_SUITESPARSE for config.h
set(HAVE_SUITESPARSE ${SuiteSparse_FOUND}) set(HAVE_SUITESPARSE ${SuiteSparse_FOUND})
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
# #
# A list of targets to use TBB with. # A list of targets to use TBB with.
# #
include_guard(GLOBAL)
# set variable for config.h # set variable for config.h
set(HAVE_TBB ${TBB_FOUND}) set(HAVE_TBB ${TBB_FOUND})
......
# Always link threading libraries to targets include_guard(GLOBAL)
# text for feature summary # text for feature summary
set_package_properties("Threads" PROPERTIES set_package_properties("Threads" PROPERTIES
......
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
# #
# A list of targets to use VC with. # A list of targets to use VC with.
# #
include_guard(GLOBAL)
# text for feature summary # text for feature summary
set_package_properties("Vc" PROPERTIES set_package_properties("Vc" PROPERTIES
......
...@@ -42,6 +42,7 @@ ...@@ -42,6 +42,7 @@
# Example: Write CMAKE_GUARD dune-foo_FOUND if you want your module to only # Example: Write CMAKE_GUARD dune-foo_FOUND if you want your module to only
# build when the dune-foo module is present. # build when the dune-foo module is present.
# #
include_guard(GLOBAL)
function(dune_add_pybind11_module) function(dune_add_pybind11_module)
include(CMakeParseArguments) include(CMakeParseArguments)
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
# #
# This is exactly the same as the ``list(FILTER ...)`` command available in # This is exactly the same as the ``list(FILTER ...)`` command available in
# cmake 3.7 and onward. # cmake 3.7 and onward.
include_guard(GLOBAL)
# list(FILTER...) was introduced in cmake 3.6, this is a compatibility # list(FILTER...) was introduced in cmake 3.6, this is a compatibility
# implementation for earlier cmakes # implementation for earlier cmakes
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
# #
# It sets the variable :code:`HAVE_CXA_DEMANGLE` with the result. # It sets the variable :code:`HAVE_CXA_DEMANGLE` with the result.
# #
include_guard(GLOBAL)
include(CheckCXXSourceCompiles) include(CheckCXXSourceCompiles)
......
...@@ -48,6 +48,7 @@ ...@@ -48,6 +48,7 @@
# target. See https://gitlab.kitware.com/cmake/cmake/issues/8438 # target. See https://gitlab.kitware.com/cmake/cmake/issues/8438
# and https://gitlab.dune-project.org/core/dune-common/issues/36 # and https://gitlab.dune-project.org/core/dune-common/issues/36
# #
include_guard(GLOBAL)
include(UseLatexMk) include(UseLatexMk)
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
# The documentation is built during the top-level :code:`make doc` call. We have added a dependency # The documentation is built during the top-level :code:`make doc` call. We have added a dependency
# that makes sure it is built before running :code:`make install`. # that makes sure it is built before running :code:`make install`.
# #
include_guard(GLOBAL)
find_package(Doxygen) find_package(Doxygen)
set_package_properties("Doxygen" PROPERTIES set_package_properties("Doxygen" PROPERTIES
......
...@@ -140,6 +140,7 @@ ...@@ -140,6 +140,7 @@
# #
# Register sources for module exported library. # Register sources for module exported library.
# #
include_guard(GLOBAL)
function(dune_register_package_flags) function(dune_register_package_flags)
include(CMakeParseArguments) include(CMakeParseArguments)
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
# exits on non-zero exit codes. All arguments are forwarded to the actual # exits on non-zero exit codes. All arguments are forwarded to the actual
# cmake command. # cmake command.
# #
include_guard(GLOBAL)
function(dune_execute_process) function(dune_execute_process)
include(CMakeParseArguments) include(CMakeParseArguments)
......
...@@ -463,7 +463,6 @@ ...@@ -463,7 +463,6 @@
# :ref:`dune_instance_begin() # :ref:`dune_instance_begin()
# <dune_instance_begin>`/:ref:`dune_instance_end() <dune_instance_end>` # <dune_instance_begin>`/:ref:`dune_instance_end() <dune_instance_end>`
# block. # block.
include_guard(GLOBAL) include_guard(GLOBAL)
# macro to print additional information to the cmake output file. # macro to print additional information to the cmake output file.
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
# #
# The target list to add the MPI flags to. # The target list to add the MPI flags to.
# #
include_guard(GLOBAL)
find_package(MPI 3.0 COMPONENTS C) find_package(MPI 3.0 COMPONENTS C)
......
...@@ -132,6 +132,7 @@ ...@@ -132,6 +132,7 @@
# of all dependent modules. # of all dependent modules.
# Finally config.h is created from config_collected.h.cmake. # Finally config.h is created from config_collected.h.cmake.
# #
include_guard(GLOBAL)
enable_language(C) # Enable C to skip CXX bindings for some tests. enable_language(C) # Enable C to skip CXX bindings for some tests.
......
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
# requiring or suggesting this module. One and only one type of path # requiring or suggesting this module. One and only one type of path
# may be requested. # may be requested.
# #
include_guard(GLOBAL)
function(dune_module_path) function(dune_module_path)
# Parse Arguments # Parse Arguments
......