/usr/share/dune/cmake/modules/FindInkscape.cmake is in libdune-common-dev 2.5.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 | # .. cmake_module::
#
# Module that checks for inkscape
#
# Sets the following variables
#
# :code:`INKSCAPE_FOUND`
# Whether inkscape was found
#
# :code:`INKSCAPE`
# Path to inkscape to generate .png's form .svg's
#
find_program(INKSCAPE inkscape DOC "Path to inkscape to generate png files from svg files")
find_program(CONVERT convert DOC "Path to convert program")
if(INKSCAPE)
set(INKSCAPE_FOUND True)
endif(INKSCAPE)
|