AUTORCC_OPTIONS¶
Additional options for rcc
when using AUTORCC
This property holds additional command line options which will be used when
rcc
is executed during the build via AUTORCC
, i.e. it is equivalent to the
optional OPTIONS
argument of the qt4_add_resources()
macro.
By default it is empty.
The options set on the .qrc
source file may override
AUTORCC_OPTIONS
set on the target.
EXAMPLE¶
# ...
set_property(SOURCE resources.qrc PROPERTY AUTORCC_OPTIONS "--compress;9")
# ...