I want to remove specific libraries from a CMake variable.
Suppose LIB contains the value of the variables "A;B;C", I know use set to add the comtent of another variable "D" like this
set(LIB ${LIB};D) However I tried to remove "C" from LIB like following
unset(LIB C) This code does not work. Does anyone know good way to do this?