This file is indexed.

/usr/share/camitk-4.0/cmake/FindXml2.cmake is in libcamitk-dev 4.0.4-2ubuntu4.

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
24
25
# find xml2 using xml2-config (cmake is not really elegant for that)
if(NOT CMAKE_CROSSCOMPILING)
  # just ask CMake
  find_package( LibXml2 REQUIRED )
  add_definitions(${LIBXML2_DEFINITIONS})
else()
  find_program(XML2_CONFIG
    NAMES xml2-config
    PATHS "/usr/bin" ${CMAKE_FIND_ROOT_PATH}/bin #Add paths here
  )
  if (NOT XML2_CONFIG)
    message(FATAL_ERROR "For crosscompiling, you need to define XML2_CONFIG")
  else()
    set(LIBXML2_FOUND 1)
    exec_program(${XML2_CONFIG}
                  ARGS --libs
                  OUTPUT_VARIABLE LIBXML2_LIBRARIES
    )
    exec_program(${XML2_CONFIG}
                  ARGS --cflags
                  OUTPUT_VARIABLE LIBXML2_INCLUDE_DIR)
    include_directories(${LIBXML2_INCLUDE_DIR})
    add_definitions(${LIBXML2_INCLUDE_DIR})    
  endif()
endif()