diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2024-07-03 10:19:30 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2024-07-03 10:19:30 +0200 |
commit | a14a7a0ccc9de76aeab0b2e4bbf58f1a79deedc2 (patch) | |
tree | e469179df67a0e0db49161a43cbf8076a189f6f4 /CMake/FindInkscape.cmake | |
parent | 5d2c2b27a6323e2666378b986129b2a7c2c39e5c (diff) |
New upstream version 5.3.0GAupstream/5.3.0GAupstream
Diffstat (limited to 'CMake/FindInkscape.cmake')
-rw-r--r-- | CMake/FindInkscape.cmake | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/CMake/FindInkscape.cmake b/CMake/FindInkscape.cmake new file mode 100644 index 0000000..0ed7034 --- /dev/null +++ b/CMake/FindInkscape.cmake @@ -0,0 +1,47 @@ + +# Try to find the Inkscape command-line SVG rasterizer +# Once done this will define +# +# Inkscape_FOUND +# Inkscape_EXECUTABLE Where to find Inkscape +# Inkscape_VERSION The Inkscape version number +# Inkscape_EXPORT Option to specify the destination file +# Inkscape_GUI Option to disable the GUI if needed +# +# Module is from https://github.com/arx/ArxLibertatis + +find_program( + Inkscape_EXECUTABLE + NAMES inkscape + HINTS "C:/Program Files/Inkscape/bin" + DOC "Inkscape command-line SVG rasterizer" +) + +execute_process(COMMAND ${Inkscape_EXECUTABLE} "--version" OUTPUT_VARIABLE _Inkscape_VERSION ERROR_QUIET) +STRING(REGEX MATCH "[1-9]\.[0-9\+\.[0-9]+" _Inkscape_VERSION ${_Inkscape_VERSION}) + +set(Inkscape_VERSION ${_Inkscape_VERSION} CACHE STRING "Inkscape Version") + +execute_process(COMMAND ${Inkscape_EXECUTABLE} "--help" OUTPUT_VARIABLE _Inkscape_HELP ERROR_QUIET) + +if(_Inkscape_HELP MATCHES "--without-gui") + set(Inkscape_GUI "--without-gui" CACHE STRING "Inkscape option to disable the GUI if needed") +endif() + +if(NOT DEFINED Inkscape_EXPORT) + foreach(option IN ITEMS "--export-filename=" "--export-file=" "--export-png=") + if(_Inkscape_HELP MATCHES "${option}") + set(Inkscape_EXPORT "${option}" CACHE STRING "Inkscape option to specify the export filename") + break() + endif() + endforeach() + if(NOT DEFINED Inkscape_EXPORT) + message(WARNING "Could not determine Inkscape export file option, assuming -o") + set(Inkscape_EXPORT "-o " CACHE STRING "Inkscape option to specify the export filename") + endif() +endif() + +# handle the QUIETLY and REQUIRED arguments and set Inkscape_FOUND to TRUE if +# all listed variables are TRUE +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(Inkscape REQUIRED_VARS Inkscape_EXECUTABLE)
\ No newline at end of file |