diff options
author | Chuck Atkins <chuck.atkins@kitware.com> | 2014-02-12 20:33:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-02-17 21:05:48 (GMT) |
commit | 17485e37a28aca174c51904f6a379dd23bc83aa5 (patch) | |
tree | 1926f3ecf22b6ee7104080b68084d66e26474a4f /Help | |
parent | b486c6d49a1466e4b45014c50f44f74376e35ca7 (diff) | |
download | CMake-17485e37a28aca174c51904f6a379dd23bc83aa5.zip CMake-17485e37a28aca174c51904f6a379dd23bc83aa5.tar.gz CMake-17485e37a28aca174c51904f6a379dd23bc83aa5.tar.bz2 |
FindBoost: Add suport for custom namespaces
When building boost with an alternate namespace the libraries generated
will have a different naming convention. This is often done to ensure
no symbol conflicts with external libraries built against a different
version of boost. If the namespace used is "myprivateboost::" instead
of "boost::" then the libraries built will be named myprivateboost_foo
instead of boost_foo. Add an option to specify a custom namespace used
to alter the library names that get searched for.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/release/dev/Boost_NAMESPACE.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Help/release/dev/Boost_NAMESPACE.rst b/Help/release/dev/Boost_NAMESPACE.rst new file mode 100644 index 0000000..434db29 --- /dev/null +++ b/Help/release/dev/Boost_NAMESPACE.rst @@ -0,0 +1,5 @@ +Boost_NAMESPACE +--------------- + +* The :module:`FindBoost` module learned a new ``Boost_NAMESPACE`` + option to change the ``boost`` prefix on library names. |