https://github.com/Kitware/CMake
Raw File
Tip revision: 8c9c9aa07f3ffaa48ebaea6adc8027b905298338 authored by Brad King on 13 July 2015, 13:20:37 UTC
CMake 3.3.0-rc4
Tip revision: 8c9c9aa
remove.rst
remove
------

Deprecated. Use the list(REMOVE_ITEM ) command instead.

::

  remove(VAR VALUE VALUE ...)

Removes VALUE from the variable VAR.  This is typically used to remove
entries from a vector (e.g.  semicolon separated list).  VALUE is
expanded.
back to top