mirror of
https://github.com/reactos/CMake.git
synced 2025-02-21 20:40:44 +00:00
FindBoost: Use string(APPEND) in more cases
This commit is contained in:
parent
429cc18fca
commit
6699d46a2a
@ -1313,13 +1313,13 @@ string(APPEND _boost_DEBUG_ABI_TAG "d")
|
||||
# p using the STLport standard library rather than the
|
||||
# default one supplied with your compiler
|
||||
if(Boost_USE_STLPORT)
|
||||
set( _boost_RELEASE_ABI_TAG "${_boost_RELEASE_ABI_TAG}p")
|
||||
set( _boost_DEBUG_ABI_TAG "${_boost_DEBUG_ABI_TAG}p")
|
||||
string(APPEND _boost_RELEASE_ABI_TAG "p")
|
||||
string(APPEND _boost_DEBUG_ABI_TAG "p")
|
||||
endif()
|
||||
# n using the STLport deprecated "native iostreams" feature
|
||||
if(Boost_USE_STLPORT_DEPRECATED_NATIVE_IOSTREAMS)
|
||||
set( _boost_RELEASE_ABI_TAG "${_boost_RELEASE_ABI_TAG}n")
|
||||
set( _boost_DEBUG_ABI_TAG "${_boost_DEBUG_ABI_TAG}n")
|
||||
string(APPEND _boost_RELEASE_ABI_TAG "n")
|
||||
string(APPEND _boost_DEBUG_ABI_TAG "n")
|
||||
endif()
|
||||
|
||||
if(Boost_DEBUG)
|
||||
|
Loading…
x
Reference in New Issue
Block a user