1CMAKE_AUTORCC_OPTIONS 2--------------------- 3 4Additional options for ``rcc`` when using :variable:`CMAKE_AUTORCC`. 5 6This variable is used to initialize the :prop_tgt:`AUTORCC_OPTIONS` property on 7all the targets. See that target property for additional information. 8 9EXAMPLE 10^^^^^^^ 11 12.. code-block:: cmake 13 14 # ... 15 set(CMAKE_AUTORCC_OPTIONS "--compress;9") 16 # ... 17