Merge topic 'fix-12273-quote-arg-in-findboost'
cdf5224
FindBoost: Quote possibly empty string argument (#12273)
This commit is contained in:
commit
7f8cf4236d
|
@ -405,7 +405,7 @@ endfunction()
|
||||||
#
|
#
|
||||||
function(_Boost_PREPEND_LIST_WITH_THREADAPI _output)
|
function(_Boost_PREPEND_LIST_WITH_THREADAPI _output)
|
||||||
set(_orig_libnames ${ARGN})
|
set(_orig_libnames ${ARGN})
|
||||||
string(REPLACE "thread" "thread_${Boost_THREADAPI}" _threadapi_libnames ${_orig_libnames})
|
string(REPLACE "thread" "thread_${Boost_THREADAPI}" _threadapi_libnames "${_orig_libnames}")
|
||||||
set(${_output} ${_threadapi_libnames} ${_orig_libnames} PARENT_SCOPE)
|
set(${_output} ${_threadapi_libnames} ${_orig_libnames} PARENT_SCOPE)
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue