This file is indexed.

/usr/share/dune/cmake/modules/AddSuperLUFlags.cmake is in libdune-istl-dev 2.4.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# Module providing convenience methods for compile binaries with SuperLU support.
#
# Provides the following functions:
#
# add_dune_superlu_flags(target1 target2 ...)
#
# adds SuperLU flags to the targets for compilation and linking
#
function(add_dune_superlu_flags)
  if(SUPERLU_FOUND)
    cmake_parse_arguments(_add_superlu "OBJECT" "" "" ${ARGN})
    foreach(_target ${_add_superlu_UNPARSED_ARGUMENTS})
      if(NOT _add_superlu_OBJECT)
        target_link_libraries(${_target} ${SUPERLU_DUNE_LIBRARIES})
      endif()
      get_target_property(_props ${_target} COMPILE_FLAGS)
      string(REPLACE "_props-NOTFOUND" "" _props "${_props}")
      set_target_properties(${_target} PROPERTIES COMPILE_FLAGS
        "${_props} ${SUPERLU_DUNE_COMPILE_FLAGS} -DENABLE_SUPERLU=1")
    endforeach()
  endif(SUPERLU_FOUND)
endfunction(add_dune_superlu_flags)