mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-03 12:19:41 -06:00
The line
set( ${basename}_LIBRARY )
removes the normal variable, but if the corresponding cached variable is
present then line
list( APPEND ${basename}_LIBRARY optimized "${_libname}" )
uses that and fails. Replace the original line with
set( ${basename}_LIBRARY "" )
to set the normal variable to empty instead of unsetting it.
4.1 KiB
4.1 KiB