1CMAKE_AUTOUIC_OPTIONS 2--------------------- 3 4Additional options for ``uic`` when using :variable:`CMAKE_AUTOUIC`. 5 6This variable is used to initialize the :prop_tgt:`AUTOUIC_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_property(CMAKE_AUTOUIC_OPTIONS "--no-protection") 16 # ... 17