diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2016-10-13 08:17:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-10-13 14:15:34 (GMT) |
commit | 6699d46a2a7f12d35926def3e4db3c7a0a5f7449 (patch) | |
tree | 33fea7c6a20e1faca215cf67ed27177a253c63a8 /Modules/FindBoost.cmake | |
parent | 429cc18fca163a90c7f6c85d932925ea6aef2667 (diff) | |
download | CMake-6699d46a2a7f12d35926def3e4db3c7a0a5f7449.zip CMake-6699d46a2a7f12d35926def3e4db3c7a0a5f7449.tar.gz CMake-6699d46a2a7f12d35926def3e4db3c7a0a5f7449.tar.bz2 |
FindBoost: Use string(APPEND) in more cases
Diffstat (limited to 'Modules/FindBoost.cmake')
-rw-r--r-- | Modules/FindBoost.cmake | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake index 184fb05..84ba061 100644 --- a/Modules/FindBoost.cmake +++ b/Modules/FindBoost.cmake @@ -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) |