Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dennis Klein
CMake
Commits
6699d46a
Commit
6699d46a
authored
Oct 13, 2016
by
Alex Turbov
Committed by
Brad King
Oct 13, 2016
Browse files
FindBoost: Use string(APPEND) in more cases
parent
429cc18f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Modules/FindBoost.cmake
View file @
6699d46a
...
...
@@ -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
)
s
et
(
_boost_RELEASE_ABI_TAG
"
${
_boost_RELEASE_ABI_TAG
}
p"
)
s
et
(
_boost_DEBUG_ABI_TAG
"
${
_boost_DEBUG_ABI_TAG
}
p"
)
s
tring
(
APPEND
_boost_RELEASE_ABI_TAG
"
p"
)
s
tring
(
APPEND
_boost_DEBUG_ABI_TAG
"
p"
)
endif
()
# n using the STLport deprecated "native iostreams" feature
if
(
Boost_USE_STLPORT_DEPRECATED_NATIVE_IOSTREAMS
)
s
et
(
_boost_RELEASE_ABI_TAG
"
${
_boost_RELEASE_ABI_TAG
}
n"
)
s
et
(
_boost_DEBUG_ABI_TAG
"
${
_boost_DEBUG_ABI_TAG
}
n"
)
s
tring
(
APPEND
_boost_RELEASE_ABI_TAG
"
n"
)
s
tring
(
APPEND
_boost_DEBUG_ABI_TAG
"
n"
)
endif
()
if
(
Boost_DEBUG
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment