1set_target_properties 2--------------------- 3 4Targets can have properties that affect how they are built. 5 6.. code-block:: cmake 7 8 set_target_properties(target1 target2 ... 9 PROPERTIES prop1 value1 10 prop2 value2 ...) 11 12Sets properties on targets. The syntax for the command is to list all 13the targets you want to change, and then provide the values you want to 14set next. You can use any prop value pair you want and extract it 15later with the :command:`get_property` or :command:`get_target_property` 16command. 17 18See also the :command:`set_property(TARGET)` command. 19 20See :ref:`Target Properties` for the list of properties known to CMake. 21