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
Showing
with 15 additions and 0 deletions
......@@ -2,6 +2,7 @@
# file <module-name>.pc from <module-name>.pc.in,
# and adds installation directives.
#
include_guard(GLOBAL)
find_package(PkgConfig)
# text for feature summary
......
......@@ -62,6 +62,7 @@
# Call this function from a downstream module, if that module relies on the
# the presence of the configure time virtualenv described in :ref:`DunePythonVirtualenv`.
#
include_guard(GLOBAL)
# unless the user has defined the variable, unversioned names (like python3) are found
# first, to match what users most probably use later on to call the executable
......
......@@ -41,6 +41,7 @@
#
# Find a given python package on the system.
#
include_guard(GLOBAL)
function(dune_python_find_package)
# Parse Arguments
......
......@@ -34,6 +34,7 @@
# Use this variable to set additional flags for pip in this build. This can e.g.
# be used to point pip to alternative package indices in restricted environments.
#
include_guard(GLOBAL)
function(dune_python_install_package)
# Parse Arguments
......
......@@ -46,6 +46,7 @@
# build system. Added commands are run, when the target
# :code:`test_python` is built and during :code:`ctest`.
#
include_guard(GLOBAL)
function(dune_python_add_test)
# Parse Arguments
......
......@@ -68,6 +68,7 @@
# not be necessary anymore, see https://bugs.launchpad.net/debian/+source/python3.4/+bug/1290847
# for more information about the underlying distribution bug.
#
include_guard(GLOBAL)
# If the user has not specified an absolute, we look through the dependency tree of this module
# for a build directory that already contains a virtual environment.
......
......@@ -52,6 +52,7 @@
# and a blank) are ignored. Any resulting content of lines most form valid rst.
# * TODO document more
#
include_guard(GLOBAL)
find_package(Sphinx)
# text for feature summary
......
include_guard(GLOBAL)
find_package(Sphinx)
find_package(Python3 COMPONENTS Interpreter Development)
......
......@@ -8,6 +8,7 @@
# :code:`vverb`, :code:`verb`, :code:`info`, :code:`warn` and :code:`grave`.
# Defaults to :code:`warn`.
#
include_guard(GLOBAL)
macro(dune_set_minimal_debug_level)
set(MINIMAL_DEBUG_LEVEL ON CACHE STRING "set the MINIMAL_DEBUG_LEVEL. Standard debug streams with level below MINIMAL_DEBUG_LEVEL will collapse to doing nothing if output is requested. (default=warn)")
......
......@@ -111,6 +111,7 @@
# a warning is issued and copying is used as a fallback to
# symlinking.
#
include_guard(GLOBAL)
macro(dune_add_copy_command file_name)
add_custom_command(
......
......@@ -205,6 +205,7 @@
# build all tests during `make all`. Note, that this may take quite some time for some modules.
# If not in use, you have to build tests through the target :code:`build_tests`.
#
include_guard(GLOBAL)
# enable the testing suite on the CMake side.
enable_testing()
......
......@@ -5,6 +5,7 @@
# There has been a couple of issues with this implementation in
# the past, so it was deactivated by default.
#
include_guard(GLOBAL)
# sets up a global property with the names of all header files
# in the module and a global target depending on all checks
......
......@@ -22,6 +22,7 @@
# .. note::
# If you don't know what this is or what it's good for, don't use it.
#
include_guard(GLOBAL)
option(ALLOW_CXXFLAGS_OVERWRITE OFF)
option(ALLOW_CFLAGS_OVERWRITE OFF)
......
......@@ -22,6 +22,7 @@
#
# TODO Switch to named arguments!
#
include_guard(GLOBAL)
include(CMakeParseArguments)
......
......@@ -101,6 +101,7 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
include_guard(GLOBAL)
# Find LATEX and LatexMk
find_package(LATEX)
......