Finds icotool, command-line program for converting and creating Win32 icon
and cursor files.
This module defines the following variables:
Icotool_FOUNDTrue if icotool has been found. For backward compatibility, the
ICOTOOL_FOUND variable is also set to the same value.
ICOTOOL_VERSION_STRINGThe version of icotool found.
The following cache variables may also be set:
ICOTOOL_EXECUTABLEThe full path to the icotool tool.
Finding icotool and executing it in a process to create .ico icon from
the source .png image located in the current source directory:
find_package(Icotool)
if(Icotool_FOUND)
execute_process(
COMMAND
${ICOTOOL_EXECUTABLE} -c -o ${CMAKE_CURRENT_BINARY_DIR}/img.ico img.png
)
endif()