FindIcotool¶
Finds icotool, command-line program for converting and creating Win32 icon
and cursor files.
Result Variables¶
This module defines the following variables:
Icotool_FOUNDTrue if
icotoolhas been found. For backward compatibility, theICOTOOL_FOUNDvariable is also set to the same value.ICOTOOL_VERSION_STRINGThe version of
icotoolfound.
Cache Variables¶
The following cache variables may also be set:
ICOTOOL_EXECUTABLEThe full path to the
icotooltool.
Examples¶
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()