Commit 2404590821c7960cf8358f8390e88b8d22fbc59f
- Diff rendering mode:
- inline
- side by side
|   | |||
| 1 | 1 | # Sphinx build info version 1 | |
| 2 | 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | |
| 3 | config: f1fdf564e08632d31048bb9f4ec17371 | ||
| 3 | config: 8f03172e7d0da74db617946b267b7981 | ||
| 4 | 4 | tags: fbb0d17656682115ca4d033fb2f83ba1 |
|   | |||
| 107 | 107 | program that builds from one file, ``main.cpp`` and uses boost | |
| 108 | 108 | threads. My ``CMakeLists.txt`` looks like this:: | |
| 109 | 109 | ||
| 110 | include_directories("/home/troy/boost-1.41.0/src") | ||
| 111 | include("/home/troy/boost-1.41.0/build/lib/Exports.cmake") | ||
| 110 | include_directories( | ||
| 111 | /home/troy/boost-1.41.0/src | ||
| 112 | /home/troy/boost-1.41.0/build/lib/Exports.cmake | ||
| 113 | ) | ||
| 112 | 114 | ||
| 113 | 115 | add_executable(my_program main.cpp) | |
| 116 | |||
| 114 | 117 | target_link_libraries(my_program boost_thread-mt-shared-debug) | |
| 115 | 118 | ||
| 116 | 119 | When I build, I see |
|   | |||
| 1 | .. | ||
| 2 | .. Copyright (C) 2009 Troy Straszheim <troy@resophonic.com> | ||
| 3 | .. | ||
| 4 | .. Distributed under the Boost Software License, Version 1.0. | ||
| 5 | .. See accompanying file LICENSE_1_0.txt or copy at | ||
| 6 | .. http://www.boost.org/LICENSE_1_0.txt | ||
| 7 | .. | ||
| 8 | |||
| 9 | .. index:: find_package(Boost) | ||
| 10 | .. index:: FindBoost.cmake | ||
| 11 | |||
| 12 | .. _find_package_boost: | ||
| 13 | |||
| 14 | find_package(Boost) | ||
| 15 | =================== | ||
| 16 | |||
| 17 | See :ref:`install_customization` for more information about variables | ||
| 18 | used in this section. | ||
| 19 | |||
| 20 | If you plan on using the ``FindBoost.cmake`` packaged with cmake | ||
| 21 | versions 2.8.0 and earlier, (that is, third party packages that build | ||
| 22 | with cmake need to find this boost installation via the cmake command | ||
| 23 | ``find_package(Boost...``), you will need to layout your boost | ||
| 24 | installation in a way that is consistent with the way boost was | ||
| 25 | installed by bjam during the many Dark Years. Michael Jackson of | ||
| 26 | bluequartz.net reports success with the configuration below. He | ||
| 27 | refers to boost.cmake variables :ref:`install_versioned`, | ||
| 28 | :ref:`boost_include_install_dir`, and :ref:`boost_lib_install_dir`:: | ||
| 29 | |||
| 30 | > Set INSTALL_VERSIONED=OFF | ||
| 31 | > set BOOST_INCLUDE_INSTALL_DIR=include/boost-1_41 | ||
| 32 | > set BOOST_LIB_INSTALL_DIR=lib | ||
| 33 | > | ||
| 34 | > and then go. I also set an environment variable BOOST_ROOT to the | ||
| 35 | > CMAKE_INSTALL_PREFIX. | ||
| 36 | > | ||
| 37 | > In my CMake file I have the following; | ||
| 38 | > | ||
| 39 | > # ---------- Find Boost Headers/Libraries ----------------------- | ||
| 40 | > SET (Boost_FIND_REQUIRED TRUE) | ||
| 41 | > SET (Boost_FIND_QUIETLY TRUE) | ||
| 42 | > set (Boost_USE_MULTITHREADED TRUE) | ||
| 43 | > set (Boost_USE_STATIC_LIBS TRUE) | ||
| 44 | > SET (Boost_ADDITIONAL_VERSIONS "1.41" "1.41.0") | ||
| 45 | > | ||
| 46 | > if ( NOT MXA_BOOST_HEADERS_ONLY) | ||
| 47 | > set (MXA_BOOST_COMPONENTS program_options unit_test_framework | ||
| 48 | > test_exec_monitor) | ||
| 49 | > endif() | ||
| 50 | > FIND_PACKAGE(Boost COMPONENTS ${MXA_BOOST_COMPONENTS} ) | ||
| 51 | > INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIRS}) | ||
| 52 | > LINK_DIRECTORIES(${Boost_LIBRARY_DIRS}) | ||
| 53 | > | ||
| 54 | > This successfully works with the FindBoost.cmake that is included with CMake 2.6.4 | ||
| 55 | > | ||
| 56 | |||
| 57 | Currently in development there are other, perhaps easier, ways to | ||
| 58 | detect your boost installations if you aren't dependent on this older | ||
| 59 | FindBoost; see :ref:`exported_targets`. |
|   | |||
| 55 | 55 | build_variants | |
| 56 | 56 | exported_targets | |
| 57 | 57 | install_customization | |
| 58 | find_package_boost | ||
| 58 | 59 | faq | |
| 59 | 60 | externals/index | |
| 60 | 61 | git |
|   | |||
| 11 | 11 | Customizing the install | |
| 12 | 12 | ======================= | |
| 13 | 13 | ||
| 14 | Here you'll find ways to customize your installation. If you're | ||
| 15 | trying to make the install play nice with cmake's ``find_package``, | ||
| 16 | see :ref:`find_package_boost`. | ||
| 17 | |||
| 14 | 18 | .. index:: CMAKE_INSTALL_PREFIX | |
| 15 | 19 | single: installation | |
| 16 | 20 |
|   | |||
| 159 | 159 | ^^^^^^^^^^^^^ | |
| 160 | 160 | ||
| 161 | 161 | You will see a solution named ``RUN_TESTS``. Build this to run the | |
| 162 | tests. | ||
| 162 | tests. If you want to run them from the commandline, for some | ||
| 163 | projects you will have to use the ``-C`` flag to ctest to specify the | ||
| 164 | ctest configuration type (Debug or Release, typically). | ||
| 163 | 165 | ||
| 164 | 166 | ||
| 165 | 167 | Targets |
|   | |||
| 149 | 149 | </ul> | |
| 150 | 150 | </div> | |
| 151 | 151 | <div class="footer"> | |
| 152 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 152 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 153 | 153 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 154 | 154 | </div> | |
| 155 | 155 | </body> |
|   | |||
| 322 | 322 | </ul> | |
| 323 | 323 | </div> | |
| 324 | 324 | <div class="footer"> | |
| 325 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 325 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 326 | 326 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 327 | 327 | </div> | |
| 328 | 328 | </body> |
|   | |||
| 204 | 204 | </ul> | |
| 205 | 205 | </div> | |
| 206 | 206 | <div class="footer"> | |
| 207 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 207 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 208 | 208 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 209 | 209 | </div> | |
| 210 | 210 | </body> |
|   | |||
| 362 | 362 | </ul> | |
| 363 | 363 | </div> | |
| 364 | 364 | <div class="footer"> | |
| 365 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 365 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 366 | 366 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 367 | 367 | </div> | |
| 368 | 368 | </body> |
|   | |||
| 142 | 142 | </ul> | |
| 143 | 143 | </div> | |
| 144 | 144 | <div class="footer"> | |
| 145 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 145 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 146 | 146 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 147 | 147 | </div> | |
| 148 | 148 | </body> |
|   | |||
| 374 | 374 | </ul> | |
| 375 | 375 | </div> | |
| 376 | 376 | <div class="footer"> | |
| 377 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 377 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 378 | 378 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 379 | 379 | </div> | |
| 380 | 380 | </body> |
|   | |||
| 611 | 611 | </ul> | |
| 612 | 612 | </div> | |
| 613 | 613 | <div class="footer"> | |
| 614 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 614 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 615 | 615 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 616 | 616 | </div> | |
| 617 | 617 | </body> |
|   | |||
| 93 | 93 | <div class="bodywrapper"> | |
| 94 | 94 | <div class="body"> | |
| 95 | 95 | ||
| 96 | <span class="target" id="index-97"></span><div class="section" id="tricks-for-building-against-boost-with-cmake"> | ||
| 97 | <span id="exported-targets"></span><span id="index-98"></span><h1>Tricks for Building against Boost with CMake<a class="headerlink" href="#tricks-for-building-against-boost-with-cmake" title="Permalink to this headline">¶</a></h1> | ||
| 96 | <span class="target" id="index-22"></span><div class="section" id="tricks-for-building-against-boost-with-cmake"> | ||
| 97 | <span id="exported-targets"></span><span id="index-23"></span><h1>Tricks for Building against Boost with CMake<a class="headerlink" href="#tricks-for-building-against-boost-with-cmake" title="Permalink to this headline">¶</a></h1> | ||
| 98 | 98 | <p>Boost.CMake <em>exports</em> its targets, making developing independent | |
| 99 | 99 | projects against an installed boost, or simply against a build tree | |
| 100 | 100 | sitting on disk. There are a variety of ways to use these to ease | |
| 101 | 101 | configuration of boost in your external project.</p> | |
| 102 | 102 | <div class="section" id="with-an-uninstalled-build"> | |
| 103 | <span id="uninstalled"></span><span id="index-99"></span><h2>With an uninstalled build<a class="headerlink" href="#with-an-uninstalled-build" title="Permalink to this headline">¶</a></h2> | ||
| 103 | <span id="uninstalled"></span><span id="index-24"></span><h2>With an uninstalled build<a class="headerlink" href="#with-an-uninstalled-build" title="Permalink to this headline">¶</a></h2> | ||
| 104 | 104 | <p>You only need to do three things:</p> | |
| 105 | 105 | <ol class="arabic"> | |
| 106 | 106 | <li><p class="first">Add the appropriate include directory with | |
| … | … | ||
| 166 | 166 | built boost in directory <tt class="docutils literal"><span class="pre">/home/troy/boost/1.41.0/build</span></tt>. I have a | |
| 167 | 167 | program that builds from one file, <tt class="docutils literal"><span class="pre">main.cpp</span></tt> and uses boost | |
| 168 | 168 | threads. My <tt class="docutils literal"><span class="pre">CMakeLists.txt</span></tt> looks like this:</p> | |
| 169 | <div class="highlight-python"><pre>include_directories("/home/troy/boost-1.41.0/src") | ||
| 170 | include("/home/troy/boost-1.41.0/build/lib/Exports.cmake") | ||
| 169 | <div class="highlight-python"><pre>include_directories( | ||
| 170 | /home/troy/boost-1.41.0/src | ||
| 171 | /home/troy/boost-1.41.0/build/lib/Exports.cmake | ||
| 172 | ) | ||
| 171 | 173 | ||
| 172 | 174 | add_executable(my_program main.cpp) | |
| 175 | |||
| 173 | 176 | target_link_libraries(my_program boost_thread-mt-shared-debug)</pre> | |
| 174 | 177 | </div> | |
| 175 | 178 | <p>When I build, I see | |
| … | … | ||
| 195 | 195 | topic, outside the scope of this document. Boost.CMake makes every | |
| 196 | 196 | effort to install things cleanly and behave in a backwards-compatible | |
| 197 | 197 | manner.</p> | |
| 198 | <span class="target" id="index-100"></span><span class="target" id="index-101"></span><p id="index-102">The variable <a class="reference external" href="install_customization.html#boost-install-cmake-drivers"><em>BOOST_INSTALL_CMAKE_DRIVERS</em></a> controls whether | ||
| 198 | <span class="target" id="index-25"></span><span class="target" id="index-26"></span><p id="index-27">The variable <a class="reference external" href="install_customization.html#boost-install-cmake-drivers"><em>BOOST_INSTALL_CMAKE_DRIVERS</em></a> controls whether | ||
| 199 | 199 | Boost.CMake installs two files which help out in case multiple | |
| 200 | 200 | versions of boost are installed. If there is only one version | |
| 201 | 201 | present, the situation is simpler: typically this is simply a | |
| … | … | ||
| 222 | 222 | thrd.join(); | |
| 223 | 223 | }</pre> | |
| 224 | 224 | </div> | |
| 225 | <p id="index-103">Create a <tt class="docutils literal"><span class="pre">CMakeLists.txt</span></tt> in the same directory containing the | ||
| 225 | <p id="index-28">Create a <tt class="docutils literal"><span class="pre">CMakeLists.txt</span></tt> in the same directory containing the | ||
| 226 | 226 | following:</p> | |
| 227 | 227 | <div class="highlight-python"><pre>find_package(Boost 1.41.0 COMPONENTS thread NO_MODULE) | |
| 228 | 228 | ^^^^^^^^^--- NOTE THIS | |
| … | … | ||
| 326 | 326 | </ul> | |
| 327 | 327 | </div> | |
| 328 | 328 | <div class="footer"> | |
| 329 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 329 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 330 | 330 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 331 | 331 | </div> | |
| 332 | 332 | </body> |
|   | |||
| 130 | 130 | </ul> | |
| 131 | 131 | </div> | |
| 132 | 132 | <div class="footer"> | |
| 133 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 133 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 134 | 134 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 135 | 135 | </div> | |
| 136 | 136 | </body> |
|   | |||
| 111 | 111 | </ul> | |
| 112 | 112 | </div> | |
| 113 | 113 | <div class="footer"> | |
| 114 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 114 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 115 | 115 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 116 | 116 | </div> | |
| 117 | 117 | </body> |
|   | |||
| 111 | 111 | </ul> | |
| 112 | 112 | </div> | |
| 113 | 113 | <div class="footer"> | |
| 114 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 114 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 115 | 115 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 116 | 116 | </div> | |
| 117 | 117 | </body> |
|   | |||
| 134 | 134 | </ul> | |
| 135 | 135 | </div> | |
| 136 | 136 | <div class="footer"> | |
| 137 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 137 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 138 | 138 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 139 | 139 | </div> | |
| 140 | 140 | </body> |
|   | |||
| 143 | 143 | </ul> | |
| 144 | 144 | </div> | |
| 145 | 145 | <div class="footer"> | |
| 146 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 146 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 147 | 147 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 148 | 148 | </div> | |
| 149 | 149 | </body> |
|   | |||
| 111 | 111 | </ul> | |
| 112 | 112 | </div> | |
| 113 | 113 | <div class="footer"> | |
| 114 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 114 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 115 | 115 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 116 | 116 | </div> | |
| 117 | 117 | </body> |
|   | |||
| 173 | 173 | </ul> | |
| 174 | 174 | </div> | |
| 175 | 175 | <div class="footer"> | |
| 176 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 176 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 177 | 177 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 178 | 178 | </div> | |
| 179 | 179 | </body> |
|   | |||
| 131 | 131 | </ul> | |
| 132 | 132 | </div> | |
| 133 | 133 | <div class="footer"> | |
| 134 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 134 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 135 | 135 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 136 | 136 | </div> | |
| 137 | 137 | </body> |
|   | |||
| 127 | 127 | </ul> | |
| 128 | 128 | </div> | |
| 129 | 129 | <div class="footer"> | |
| 130 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 130 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 131 | 131 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 132 | 132 | </div> | |
| 133 | 133 | </body> |
|   | |||
| 127 | 127 | </ul> | |
| 128 | 128 | </div> | |
| 129 | 129 | <div class="footer"> | |
| 130 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 130 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 131 | 131 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 132 | 132 | </div> | |
| 133 | 133 | </body> |
|   | |||
| 21 | 21 | <script type="text/javascript" src="_static/doctools.js"></script> | |
| 22 | 22 | <link rel="top" title="Boost.CMake 1.41.0.cmake0" href="index.html" /> | |
| 23 | 23 | <link rel="next" title="External Dependencies" href="externals/index.html" /> | |
| 24 | <link rel="prev" title="Customizing the install" href="install_customization.html" /> | ||
| 24 | <link rel="prev" title="find_package(Boost)" href="find_package_boost.html" /> | ||
| 25 | 25 | <script type="text/javascript"> | |
| 26 | 26 | var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); | |
| 27 | 27 | document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); | |
| … | … | ||
| 44 | 44 | <a href="externals/index.html" title="External Dependencies" | |
| 45 | 45 | accesskey="N">next</a> |</li> | |
| 46 | 46 | <li class="right" > | |
| 47 | <a href="install_customization.html" title="Customizing the install" | ||
| 47 | <a href="find_package_boost.html" title="find_package(Boost)" | ||
| 48 | 48 | accesskey="P">previous</a> |</li> | |
| 49 | 49 | <li><a href="http://www.boost.org/">Boost</a> »</li> | |
| 50 | 50 | ||
| … | … | ||
| 66 | 66 | </ul> | |
| 67 | 67 | ||
| 68 | 68 | <h4>Previous topic</h4> | |
| 69 | <p class="topless"><a href="install_customization.html" | ||
| 70 | title="previous chapter">Customizing the install</a></p> | ||
| 69 | <p class="topless"><a href="find_package_boost.html" | ||
| 70 | title="previous chapter">find_package(Boost)</a></p> | ||
| 71 | 71 | <h4>Next topic</h4> | |
| 72 | 72 | <p class="topless"><a href="externals/index.html" | |
| 73 | 73 | title="next chapter">External Dependencies</a></p> | |
| … | … | ||
| 124 | 124 | <a href="externals/index.html" title="External Dependencies" | |
| 125 | 125 | >next</a> |</li> | |
| 126 | 126 | <li class="right" > | |
| 127 | <a href="install_customization.html" title="Customizing the install" | ||
| 127 | <a href="find_package_boost.html" title="find_package(Boost)" | ||
| 128 | 128 | >previous</a> |</li> | |
| 129 | 129 | <li><a href="http://www.boost.org/">Boost</a> »</li> | |
| 130 | 130 | ||
| … | … | ||
| 133 | 133 | </ul> | |
| 134 | 134 | </div> | |
| 135 | 135 | <div class="footer"> | |
| 136 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 136 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 137 | 137 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 138 | 138 | </div> | |
| 139 | 139 | </body> |
|   | |||
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | ||
| 2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
| 3 | |||
| 4 | <html xmlns="http://www.w3.org/1999/xhtml"> | ||
| 5 | <head> | ||
| 6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
| 7 | |||
| 8 | <title>find_package(Boost) — Boost.CMake 1.41.0.cmake0</title> | ||
| 9 | <link rel="stylesheet" href="_static/sphinxdoc.css" type="text/css" /> | ||
| 10 | <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> | ||
| 11 | <script type="text/javascript"> | ||
| 12 | var DOCUMENTATION_OPTIONS = { | ||
| 13 | URL_ROOT: '', | ||
| 14 | VERSION: '1.41.0.cmake0', | ||
| 15 | COLLAPSE_MODINDEX: false, | ||
| 16 | FILE_SUFFIX: '.html', | ||
| 17 | HAS_SOURCE: true | ||
| 18 | }; | ||
| 19 | </script> | ||
| 20 | <script type="text/javascript" src="_static/jquery.js"></script> | ||
| 21 | <script type="text/javascript" src="_static/doctools.js"></script> | ||
| 22 | <link rel="top" title="Boost.CMake 1.41.0.cmake0" href="index.html" /> | ||
| 23 | <link rel="next" title="FAQ" href="faq.html" /> | ||
| 24 | <link rel="prev" title="Customizing the install" href="install_customization.html" /> | ||
| 25 | <script type="text/javascript"> | ||
| 26 | var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); | ||
| 27 | document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); | ||
| 28 | </script> | ||
| 29 | <script type="text/javascript"> | ||
| 30 | try { | ||
| 31 | var pageTracker = _gat._getTracker("UA-11690634-1"); | ||
| 32 | pageTracker._trackPageview(); | ||
| 33 | } catch(err) {}</script> | ||
| 34 | |||
| 35 | </head> | ||
| 36 | <body> | ||
| 37 | <div class="related"> | ||
| 38 | <h3>Navigation</h3> | ||
| 39 | <ul> | ||
| 40 | <li class="right" style="margin-right: 10px"> | ||
| 41 | <a href="genindex.html" title="General Index" | ||
| 42 | accesskey="I">index</a></li> | ||
| 43 | <li class="right" > | ||
| 44 | <a href="faq.html" title="FAQ" | ||
| 45 | accesskey="N">next</a> |</li> | ||
| 46 | <li class="right" > | ||
| 47 | <a href="install_customization.html" title="Customizing the install" | ||
| 48 | accesskey="P">previous</a> |</li> | ||
| 49 | <li><a href="http://www.boost.org/">Boost</a> »</li> | ||
| 50 | |||
| 51 | <li><a href="index.html">Boost.CMake 1.41.0.cmake0</a> »</li> | ||
| 52 | |||
| 53 | </ul> | ||
| 54 | </div> | ||
| 55 | <div class="sphinxsidebar"> | ||
| 56 | <div class="sphinxsidebarwrapper"> | ||
| 57 | <p class="logo"><a href="index.html"> | ||
| 58 | <img class="logo" src="_static/alt.boost.png" alt="Logo"/> | ||
| 59 | </a></p> | ||
| 60 | <h4>Previous topic</h4> | ||
| 61 | <p class="topless"><a href="install_customization.html" | ||
| 62 | title="previous chapter">Customizing the install</a></p> | ||
| 63 | <h4>Next topic</h4> | ||
| 64 | <p class="topless"><a href="faq.html" | ||
| 65 | title="next chapter">FAQ</a></p> | ||
| 66 | <h3>This Page</h3> | ||
| 67 | <ul class="this-page-menu"> | ||
| 68 | <li><a href="_sources/find_package_boost.txt" | ||
| 69 | rel="nofollow">Show Source</a></li> | ||
| 70 | </ul> | ||
| 71 | </div> | ||
| 72 | </div> | ||
| 73 | |||
| 74 | <div class="document"> | ||
| 75 | <div class="documentwrapper"> | ||
| 76 | <div class="bodywrapper"> | ||
| 77 | <div class="body"> | ||
| 78 | |||
| 79 | <span class="target" id="index-145"></span><div class="section" id="find-package-boost"> | ||
| 80 | <span id="index-146"></span><span id="id1"></span><h1>find_package(Boost)<a class="headerlink" href="#find-package-boost" title="Permalink to this headline">¶</a></h1> | ||
| 81 | <p>See <a class="reference external" href="install_customization.html#install-customization"><em>Customizing the install</em></a> for more information about variables | ||
| 82 | used in this section.</p> | ||
| 83 | <p>If you plan on using the <tt class="docutils literal"><span class="pre">FindBoost.cmake</span></tt> packaged with cmake | ||
| 84 | versions 2.8.0 and earlier, (that is, third party packages that build | ||
| 85 | with cmake need to find this boost installation via the cmake command | ||
| 86 | <tt class="docutils literal"><span class="pre">find_package(Boost...</span></tt>), you will need to layout your boost | ||
| 87 | installation in a way that is consistent with the way boost was | ||
| 88 | installed by bjam during the many Dark Years. Michael Jackson of | ||
| 89 | bluequartz.net reports success with the configuration below. He | ||
| 90 | refers to boost.cmake variables <a class="reference external" href="install_customization.html#install-versioned"><em>INSTALL_VERSIONED</em></a>, | ||
| 91 | <a class="reference external" href="install_customization.html#boost-include-install-dir"><em>BOOST_INCLUDE_INSTALL_DIR</em></a>, and <a class="reference external" href="install_customization.html#boost-lib-install-dir"><em>BOOST_LIB_INSTALL_DIR</em></a>:</p> | ||
| 92 | <div class="highlight-python"><pre>> Set INSTALL_VERSIONED=OFF | ||
| 93 | > set BOOST_INCLUDE_INSTALL_DIR=include/boost-1_41 | ||
| 94 | > set BOOST_LIB_INSTALL_DIR=lib | ||
| 95 | > | ||
| 96 | > and then go. I also set an environment variable BOOST_ROOT to the | ||
| 97 | > CMAKE_INSTALL_PREFIX. | ||
| 98 | > | ||
| 99 | > In my CMake file I have the following; | ||
| 100 | > | ||
| 101 | > # ---------- Find Boost Headers/Libraries ----------------------- | ||
| 102 | > SET (Boost_FIND_REQUIRED TRUE) | ||
| 103 | > SET (Boost_FIND_QUIETLY TRUE) | ||
| 104 | > set (Boost_USE_MULTITHREADED TRUE) | ||
| 105 | > set (Boost_USE_STATIC_LIBS TRUE) | ||
| 106 | > SET (Boost_ADDITIONAL_VERSIONS "1.41" "1.41.0") | ||
| 107 | > | ||
| 108 | > if ( NOT MXA_BOOST_HEADERS_ONLY) | ||
| 109 | > set (MXA_BOOST_COMPONENTS program_options unit_test_framework | ||
| 110 | > test_exec_monitor) | ||
| 111 | > endif() | ||
| 112 | > FIND_PACKAGE(Boost COMPONENTS ${MXA_BOOST_COMPONENTS} ) | ||
| 113 | > INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIRS}) | ||
| 114 | > LINK_DIRECTORIES(${Boost_LIBRARY_DIRS}) | ||
| 115 | > | ||
| 116 | > This successfully works with the FindBoost.cmake that is included with CMake 2.6.4 | ||
| 117 | ></pre> | ||
| 118 | </div> | ||
| 119 | <p>Currently in development there are other, perhaps easier, ways to | ||
| 120 | detect your boost installations if you aren’t dependent on this older | ||
| 121 | FindBoost; see <a class="reference external" href="exported_targets.html#exported-targets"><em>Tricks for Building against Boost with CMake</em></a>.</p> | ||
| 122 | </div> | ||
| 123 | |||
| 124 | |||
| 125 | </div> | ||
| 126 | </div> | ||
| 127 | </div> | ||
| 128 | <div class="clearer"></div> | ||
| 129 | </div> | ||
| 130 | <div class="related"> | ||
| 131 | <h3>Navigation</h3> | ||
| 132 | <ul> | ||
| 133 | <li class="right" style="margin-right: 10px"> | ||
| 134 | <a href="genindex.html" title="General Index" | ||
| 135 | >index</a></li> | ||
| 136 | <li class="right" > | ||
| 137 | <a href="faq.html" title="FAQ" | ||
| 138 | >next</a> |</li> | ||
| 139 | <li class="right" > | ||
| 140 | <a href="install_customization.html" title="Customizing the install" | ||
| 141 | >previous</a> |</li> | ||
| 142 | <li><a href="http://www.boost.org/">Boost</a> »</li> | ||
| 143 | |||
| 144 | <li><a href="index.html">Boost.CMake 1.41.0.cmake0</a> »</li> | ||
| 145 | |||
| 146 | </ul> | ||
| 147 | </div> | ||
| 148 | <div class="footer"> | ||
| 149 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 150 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | ||
| 151 | </div> | ||
| 152 | </body> | ||
| 153 | </html> |
|   | |||
| 72 | 72 | <table width="100%" class="indextable"><tr><td width="33%" valign="top"> | |
| 73 | 73 | <dl> | |
| 74 | 74 | ||
| 75 | <dt><a href="index.html#index-46">alt.boost</a></dt> | ||
| 75 | <dt><a href="index.html#index-132">alt.boost</a></dt> | ||
| 76 | 76 | <dt>Anarchists</dt> | |
| 77 | 77 | <dd><dl> | |
| 78 | <dt><a href="index.html#index-46">Lunatics, Terrorists and</a></dt> | ||
| 78 | <dt><a href="index.html#index-132">Lunatics, Terrorists and</a></dt> | ||
| 79 | 79 | </dl></dd></dl></td><td width="33%" valign="top"><dl> | |
| 80 | 80 | </dl></td></tr></table> | |
| 81 | 81 | ||
| … | … | ||
| 85 | 85 | ||
| 86 | 86 | <dt><a href="reference/boost_add_executable.html#index-59">boost_add_executable</a>, <a href="reference/boost_add_executable.html#boost_add_executable">[1]</a></dt> | |
| 87 | 87 | <dt><a href="reference/boost_add_library.html#index-70">boost_add_library</a>, <a href="reference/boost_add_library.html#boost_add_library">[1]</a></dt> | |
| 88 | <dt><a href="install_customization.html#index-110">BOOST_CMAKE_INFRASTRUCTURE_INSTALL_DIR</a></dt> | ||
| 89 | <dt><a href="install_customization.html#index-112">BOOST_EXPORTS_FILE</a></dt> | ||
| 90 | <dt><a href="install_customization.html#index-109">BOOST_INCLUDE_INSTALL_DIR</a></dt> | ||
| 91 | <dt><a href="install_customization.html#index-111">BOOST_INSTALL_CMAKE_DRIVERS</a>, <a href="exported_targets.html#index-102">[1]</a></dt> | ||
| 92 | <dt><a href="install_customization.html#index-113">BOOST_INSTALL_EXPORTS_FILE</a></dt> | ||
| 93 | <dt><a href="install_customization.html#index-108">BOOST_LIB_INSTALL_DIR</a></dt> | ||
| 88 | <dt><a href="install_customization.html#index-139">BOOST_CMAKE_INFRASTRUCTURE_INSTALL_DIR</a></dt> | ||
| 89 | <dt><a href="install_customization.html#index-141">BOOST_EXPORTS_FILE</a></dt> | ||
| 90 | <dt><a href="install_customization.html#index-138">BOOST_INCLUDE_INSTALL_DIR</a></dt> | ||
| 91 | <dt><a href="install_customization.html#index-140">BOOST_INSTALL_CMAKE_DRIVERS</a>, <a href="exported_targets.html#index-27">[1]</a></dt> | ||
| 92 | <dt><a href="install_customization.html#index-142">BOOST_INSTALL_EXPORTS_FILE</a></dt> | ||
| 93 | <dt><a href="install_customization.html#index-137">BOOST_LIB_INSTALL_DIR</a></dt> | ||
| 94 | 94 | <dt><a href="reference/boost_library_project.html#index-72">boost_library_project</a>, <a href="reference/boost_library_project.html#boost_library_project">[1]</a></dt> | |
| 95 | 95 | <dt><a href="reference/boost_module.html#index-76">boost_module</a></dt> | |
| 96 | 96 | <dt><a href="reference/boost_python_module.html#index-77">boost_python_module</a></dt></dl></td><td width="33%" valign="top"><dl> | |
| … | … | ||
| 101 | 101 | <dt><a href="build_configuration.html#index-9">BUILD_SOVERSIONED</a></dt> | |
| 102 | 102 | <dt><a href="testing.html#index-80">BUILD_TESTS</a></dt> | |
| 103 | 103 | <dt><a href="build_configuration.html#index-6">BUILD_TOOLS</a></dt> | |
| 104 | <dt><a href="exported_targets.html#index-98">building against</a></dt> | ||
| 105 | <dt><a href="exported_targets.html#index-99">Building against uninstalled boost</a></dt> | ||
| 104 | <dt><a href="exported_targets.html#index-23">building against</a></dt> | ||
| 105 | <dt><a href="exported_targets.html#index-24">Building against uninstalled boost</a></dt> | ||
| 106 | 106 | <dt><a href="externals/bzip2.html#index-29">bzip2</a></dt> | |
| 107 | 107 | </dl></td></tr></table> | |
| 108 | 108 | ||
| … | … | ||
| 112 | 112 | ||
| 113 | 113 | <dt><a href="build_configuration.html#index-2">CMAKE_BINARY_DIR</a></dt> | |
| 114 | 114 | <dt><a href="build_configuration.html#index-8">CMAKE_CXX_COMPILER</a></dt> | |
| 115 | <dt><a href="install_customization.html#index-104">CMAKE_INSTALL_PREFIX</a>, <a href="exported_targets.html#index-101">[1]</a></dt></dl></td><td width="33%" valign="top"><dl> | ||
| 116 | <dt><a href="exported_targets.html#index-100">CMAKE_PREFIX_PATH</a></dt> | ||
| 115 | <dt><a href="install_customization.html#index-133">CMAKE_INSTALL_PREFIX</a>, <a href="exported_targets.html#index-26">[1]</a></dt></dl></td><td width="33%" valign="top"><dl> | ||
| 116 | <dt><a href="exported_targets.html#index-25">CMAKE_PREFIX_PATH</a></dt> | ||
| 117 | 117 | <dt><a href="reference/boost_add_executable.html#index-60">COMPILE_FLAGS</a>, <a href="reference/boost_add_library.html#index-71">[1]</a></dt> | |
| 118 | 118 | </dl></td></tr></table> | |
| 119 | 119 | ||
| … | … | ||
| 126 | 126 | <dt><a href="build_variants.html#index-16">feature</a></dt> | |
| 127 | 127 | </dl></dd> | |
| 128 | 128 | <dt><a href="reference/boost_add_executable.html#index-66">DEPENDS</a></dt> | |
| 129 | <dt><a href="install_customization.html#index-105">DESTDIR</a></dt></dl></td><td width="33%" valign="top"><dl> | ||
| 129 | <dt><a href="install_customization.html#index-134">DESTDIR</a></dt></dl></td><td width="33%" valign="top"><dl> | ||
| 130 | 130 | <dt><a href="externals/doxygen.html#index-30">doxygen</a></dt> | |
| 131 | 131 | <dt>DYNAMIC_RUNTIME</dt> | |
| 132 | 132 | <dd><dl> | |
| … | … | ||
| 148 | 148 | <dt><a href="build_variants.html#index-20">ENABLE_STATIC_RUNTIME</a></dt></dl></td><td width="33%" valign="top"><dl> | |
| 149 | 149 | <dt><a href="reference/boost_library_project.html#index-74">EXAMPLEDIRS</a></dt> | |
| 150 | 150 | <dt><a href="externals/expat.html#index-31">expat</a></dt> | |
| 151 | <dt><a href="exported_targets.html#index-97">exported</a></dt> | ||
| 151 | <dt><a href="exported_targets.html#index-22">exported</a></dt> | ||
| 152 | 152 | <dt>External Dependencies</dt> | |
| 153 | 153 | <dd><dl> | |
| 154 | 154 | <dt><a href="externals/index.html#index-33">selectively disabling</a></dt> | |
| 155 | 155 | </dl></dd> | |
| 156 | <dt><a href="externals/zlib.html#index-44">external dependency</a>, <a href="externals/expat.html#index-31">[1]</a>, <a href="externals/bzip2.html#index-29">[2]</a>, <a href="externals/xsltproc.html#index-43">[3]</a>, <a href="externals/valgrind.html#index-41">[4]</a>, <a href="externals/mpi.html#index-34">[5]</a>, <a href="externals/icu.html#index-32">[6]</a>, <a href="externals/doxygen.html#index-30">[7]</a></dt> | ||
| 156 | <dt><a href="externals/zlib.html#index-44">external dependency</a>, <a href="externals/expat.html#index-31">[1]</a>, <a href="externals/xsltproc.html#index-43">[2]</a>, <a href="externals/bzip2.html#index-29">[3]</a>, <a href="externals/valgrind.html#index-41">[4]</a>, <a href="externals/mpi.html#index-34">[5]</a>, <a href="externals/icu.html#index-32">[6]</a>, <a href="externals/doxygen.html#index-30">[7]</a></dt> | ||
| 157 | 157 | </dl></td></tr></table> | |
| 158 | 158 | ||
| 159 | 159 | <h2 id="F">F</h2> | |
| … | … | ||
| 175 | 175 | <dt><a href="reference/boost_add_executable.html#index-63">feature_LINK_FLAGS</a></dt> | |
| 176 | 176 | <dt><a href="reference/boost_add_executable.html#index-65">feature_LINK_LIBS</a></dt> | |
| 177 | 177 | <dt><a href="build_variants.html#index-13">features</a></dt> | |
| 178 | <dt><a href="find_package_boost.html#index-145">find_package(Boost)</a></dt> | ||
| 179 | <dt><a href="find_package_boost.html#index-146">FindBoost.cmake</a></dt> | ||
| 178 | 180 | </dl></td></tr></table> | |
| 179 | 181 | ||
| 180 | 182 | <h2 id="I">I</h2> | |
| … | … | ||
| 184 | 184 | <dl> | |
| 185 | 185 | ||
| 186 | 186 | <dt><a href="externals/icu.html#index-32">ICU</a></dt> | |
| 187 | <dt><a href="install_customization.html#index-107">INSTALL_VERSIONED</a></dt> | ||
| 188 | <dt><a href="install_customization.html#index-104">installation</a></dt></dl></td><td width="33%" valign="top"><dl> | ||
| 189 | <dt><a href="index.html#index-45">IRC</a></dt> | ||
| 187 | <dt><a href="install_customization.html#index-136">INSTALL_VERSIONED</a></dt> | ||
| 188 | <dt><a href="install_customization.html#index-133">installation</a></dt></dl></td><td width="33%" valign="top"><dl> | ||
| 189 | <dt><a href="index.html#index-131">IRC</a></dt> | ||
| 190 | 190 | </dl></td></tr></table> | |
| 191 | 191 | ||
| 192 | 192 | <h2 id="L">L</h2> | |
| 193 | 193 | <table width="100%" class="indextable"><tr><td width="33%" valign="top"> | |
| 194 | 194 | <dl> | |
| 195 | 195 | ||
| 196 | <dt><a href="install_customization.html#index-106">LIB_SUFFIX</a></dt> | ||
| 196 | <dt><a href="install_customization.html#index-135">LIB_SUFFIX</a></dt> | ||
| 197 | 197 | <dt><a href="reference/boost_add_executable.html#index-62">LINK_FLAGS</a></dt> | |
| 198 | 198 | <dt><a href="reference/boost_add_executable.html#index-64">LINK_LIBS</a></dt></dl></td><td width="33%" valign="top"><dl> | |
| 199 | 199 | <dt>Lunatics</dt> | |
| 200 | 200 | <dd><dl> | |
| 201 | <dt><a href="index.html#index-46">Anarchists Terrorists and</a></dt> | ||
| 201 | <dt><a href="index.html#index-132">Anarchists Terrorists and</a></dt> | ||
| 202 | 202 | </dl></dd> | |
| 203 | 203 | </dl></td></tr></table> | |
| 204 | 204 | ||
| … | … | ||
| 206 | 206 | <table width="100%" class="indextable"><tr><td width="33%" valign="top"> | |
| 207 | 207 | <dl> | |
| 208 | 208 | ||
| 209 | <dt><a href="index.html#index-45">Mailing List</a></dt> | ||
| 209 | <dt><a href="index.html#index-131">Mailing List</a></dt> | ||
| 210 | 210 | <dt><a href="reference/boost_library_project.html#index-75">MODULAR</a></dt> | |
| 211 | 211 | <dt><a href="externals/mpi.html#index-34">MPI</a></dt></dl></td><td width="33%" valign="top"><dl> | |
| 212 | 212 | <dt>MULTI_THREADED</dt> | |
| … | … | ||
| 221 | 221 | ||
| 222 | 222 | <dt><a href="quickstart.html#index-58">NMake</a>, <a href="testing.html#index-81">[1]</a></dt> | |
| 223 | 223 | <dt><a href="reference/boost_add_executable.html#index-68">NO_INSTALL</a></dt></dl></td><td width="33%" valign="top"><dl> | |
| 224 | <dt><a href="exported_targets.html#index-103">NO_MODULE</a></dt> | ||
| 224 | <dt><a href="exported_targets.html#index-28">NO_MODULE</a></dt> | ||
| 225 | 225 | </dl></td></tr></table> | |
| 226 | 226 | ||
| 227 | 227 | <h2 id="O">O</h2> | |
| … | … | ||
| 286 | 286 | <table width="100%" class="indextable"><tr><td width="33%" valign="top"> | |
| 287 | 287 | <dl> | |
| 288 | 288 | ||
| 289 | <dt><a href="exported_targets.html#index-97">targets</a></dt> | ||
| 289 | <dt><a href="exported_targets.html#index-22">targets</a></dt> | ||
| 290 | 290 | <dd><dl> | |
| 291 | 291 | <dt><a href="testing.html#index-84">testing</a></dt> | |
| 292 | 292 | </dl></dd> | |
| 293 | 293 | <dt>Terrorists</dt> | |
| 294 | 294 | <dd><dl> | |
| 295 | <dt><a href="index.html#index-46">Anarchists Lunatics and</a></dt> | ||
| 295 | <dt><a href="index.html#index-132">Anarchists Lunatics and</a></dt> | ||
| 296 | 296 | </dl></dd> | |
| 297 | 297 | <dt><a href="reference/boost_library_project.html#index-73">TESTDIRS</a></dt></dl></td><td width="33%" valign="top"><dl> | |
| 298 | 298 | <dt>testing</dt> | |
| … | … | ||
| 306 | 306 | <table width="100%" class="indextable"><tr><td width="33%" valign="top"> | |
| 307 | 307 | <dl> | |
| 308 | 308 | ||
| 309 | <dt><a href="exported_targets.html#index-98">uninstalled tree</a></dt></dl></td><td width="33%" valign="top"><dl> | ||
| 309 | <dt><a href="exported_targets.html#index-23">uninstalled tree</a></dt></dl></td><td width="33%" valign="top"><dl> | ||
| 310 | 310 | </dl></td></tr></table> | |
| 311 | 311 | ||
| 312 | 312 | <h2 id="V">V</h2> | |
| … | … | ||
| 365 | 365 | </ul> | |
| 366 | 366 | </div> | |
| 367 | 367 | <div class="footer"> | |
| 368 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 368 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 369 | 369 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 370 | 370 | </div> | |
| 371 | 371 | </body> |
|   | |||
| 281 | 281 | </ul> | |
| 282 | 282 | </div> | |
| 283 | 283 | <div class="footer"> | |
| 284 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 284 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 285 | 285 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 286 | 286 | </div> | |
| 287 | 287 | </body> |
|   | |||
| 96 | 96 | git version control. Today, <tt class="docutils literal"><span class="pre">Boost.CMake</span></tt> is stable, mature, and | |
| 97 | 97 | supported by the developers, a large base of expert users, and | |
| 98 | 98 | occasionally by the authors of CMake itself.</p> | |
| 99 | <p id="index-45"><strong>boost-cmake mailing list</strong></p> | ||
| 99 | <p id="index-131"><strong>boost-cmake mailing list</strong></p> | ||
| 100 | 100 | <blockquote> | |
| 101 | 101 | <a class="reference external" href="http://lists.boost.org/mailman/listinfo.cgi/boost-cmake">http://lists.boost.org/mailman/listinfo.cgi/boost-cmake</a></blockquote> | |
| 102 | 102 | <p><strong>IRC</strong></p> | |
| … | … | ||
| 204 | 204 | <li class="toctree-l2"><a class="reference external" href="install_customization.html#boost-exports-install-dir">BOOST_EXPORTS_INSTALL_DIR</a></li> | |
| 205 | 205 | </ul> | |
| 206 | 206 | </li> | |
| 207 | <li class="toctree-l1"><a class="reference external" href="find_package_boost.html">find_package(Boost)</a></li> | ||
| 207 | 208 | <li class="toctree-l1"><a class="reference external" href="faq.html">FAQ</a><ul> | |
| 208 | 209 | <li class="toctree-l2"><a class="reference external" href="faq.html#how-do-i-set-d-secure-scl-0-on-the-commandline-for-release-builds">How do I set <tt class="docutils literal"><span class="pre">/D</span> <span class="pre">_SECURE_SCL=0</span></tt> on the commandline for release builds?</a></li> | |
| 209 | 210 | </ul> | |
| … | … | ||
| 339 | 339 | </ul> | |
| 340 | 340 | </div> | |
| 341 | 341 | <div class="section" id="why-alt-boost"> | |
| 342 | <span id="alt-boost"></span><span id="index-46"></span><h2>Why “alt.boost”?<a class="headerlink" href="#why-alt-boost" title="Permalink to this headline">¶</a></h2> | ||
| 342 | <span id="alt-boost"></span><span id="index-132"></span><h2>Why “alt.boost”?<a class="headerlink" href="#why-alt-boost" title="Permalink to this headline">¶</a></h2> | ||
| 343 | 343 | <p>The ‘alt’ is a reference to the <tt class="docutils literal"><span class="pre">alt.*</span></tt> Usenet hierarchy. Here, as | |
| 344 | 344 | in Usenet, <em>alt</em> stands for <a class="reference external" href="http://nylon.net/alt/index.htm">Anarchists, Lunatics and Terrorists</a>. This independent effort explores | |
| 345 | 345 | and applies alternate techniques/technologies in the areas of build, | |
| … | … | ||
| 370 | 370 | </ul> | |
| 371 | 371 | </div> | |
| 372 | 372 | <div class="footer"> | |
| 373 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 373 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 374 | 374 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 375 | 375 | </div> | |
| 376 | 376 | </body> |
|   | |||
| 244 | 244 | </ul> | |
| 245 | 245 | </div> | |
| 246 | 246 | <div class="footer"> | |
| 247 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 247 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 248 | 248 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 249 | 249 | </div> | |
| 250 | 250 | </body> |
|   | |||
| 20 | 20 | <script type="text/javascript" src="_static/jquery.js"></script> | |
| 21 | 21 | <script type="text/javascript" src="_static/doctools.js"></script> | |
| 22 | 22 | <link rel="top" title="Boost.CMake 1.41.0.cmake0" href="index.html" /> | |
| 23 | <link rel="next" title="FAQ" href="faq.html" /> | ||
| 23 | <link rel="next" title="find_package(Boost)" href="find_package_boost.html" /> | ||
| 24 | 24 | <link rel="prev" title="Tricks for Building against Boost with CMake" href="exported_targets.html" /> | |
| 25 | 25 | <script type="text/javascript"> | |
| 26 | 26 | var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); | |
| … | … | ||
| 41 | 41 | <a href="genindex.html" title="General Index" | |
| 42 | 42 | accesskey="I">index</a></li> | |
| 43 | 43 | <li class="right" > | |
| 44 | <a href="faq.html" title="FAQ" | ||
| 44 | <a href="find_package_boost.html" title="find_package(Boost)" | ||
| 45 | 45 | accesskey="N">next</a> |</li> | |
| 46 | 46 | <li class="right" > | |
| 47 | 47 | <a href="exported_targets.html" title="Tricks for Building against Boost with CMake" | |
| … | … | ||
| 78 | 78 | <p class="topless"><a href="exported_targets.html" | |
| 79 | 79 | title="previous chapter">Tricks for Building against Boost with CMake</a></p> | |
| 80 | 80 | <h4>Next topic</h4> | |
| 81 | <p class="topless"><a href="faq.html" | ||
| 82 | title="next chapter">FAQ</a></p> | ||
| 81 | <p class="topless"><a href="find_package_boost.html" | ||
| 82 | title="next chapter">find_package(Boost)</a></p> | ||
| 83 | 83 | <h3>This Page</h3> | |
| 84 | 84 | <ul class="this-page-menu"> | |
| 85 | 85 | <li><a href="_sources/install_customization.txt" | |
| … | … | ||
| 95 | 95 | ||
| 96 | 96 | <div class="section" id="customizing-the-install"> | |
| 97 | 97 | <span id="install-customization"></span><h1>Customizing the install<a class="headerlink" href="#customizing-the-install" title="Permalink to this headline">¶</a></h1> | |
| 98 | <p>Here you’ll find ways to customize your installation. If you’re | ||
| 99 | trying to make the install play nice with cmake’s <tt class="docutils literal"><span class="pre">find_package</span></tt>, | ||
| 100 | see <a class="reference external" href="find_package_boost.html#find-package-boost"><em>find_package(Boost)</em></a>.</p> | ||
| 98 | 101 | <div class="section" id="cmake-install-prefix"> | |
| 99 | <span id="index-104"></span><span id="id1"></span><h2>CMAKE_INSTALL_PREFIX<a class="headerlink" href="#cmake-install-prefix" title="Permalink to this headline">¶</a></h2> | ||
| 102 | <span id="index-133"></span><span id="id1"></span><h2>CMAKE_INSTALL_PREFIX<a class="headerlink" href="#cmake-install-prefix" title="Permalink to this headline">¶</a></h2> | ||
| 100 | 103 | <p>This is a standard cmake option that sets the path to which boost | |
| 101 | 104 | will be installed.</p> | |
| 102 | <p id="index-105">CMake generates makefiles that play nice with <tt class="docutils literal"><span class="pre">DESTDIR</span></tt>. e.g. | ||
| 105 | <p id="index-134">CMake generates makefiles that play nice with <tt class="docutils literal"><span class="pre">DESTDIR</span></tt>. e.g. | ||
| 103 | 106 | if you configure like this:</p> | |
| 104 | 107 | <div class="highlight-python"><pre>cmake ../src -DCMAKE_INSTALL_PREFIX=/tmp/blah</pre> | |
| 105 | 108 | </div> | |
| … | … | ||
| 110 | 110 | installed to <tt class="docutils literal"><span class="pre">/foo/tmp/blah</span></tt>.</p> | |
| 111 | 111 | </div> | |
| 112 | 112 | <div class="section" id="lib-suffix"> | |
| 113 | <span id="index-106"></span><span id="id2"></span><h2>LIB_SUFFIX<a class="headerlink" href="#lib-suffix" title="Permalink to this headline">¶</a></h2> | ||
| 113 | <span id="index-135"></span><span id="id2"></span><h2>LIB_SUFFIX<a class="headerlink" href="#lib-suffix" title="Permalink to this headline">¶</a></h2> | ||
| 114 | 114 | <p>This defines the subdirectory of <tt class="docutils literal"><span class="pre">CMAKE_INSTALL_PREFIX</span></tt> to which | |
| 115 | 115 | libraries will be installed. It is empty by default. For example, | |
| 116 | 116 | if I’m on 64-bit fedora, I want the libs installed to | |
| … | … | ||
| 119 | 119 | </div> | |
| 120 | 120 | </div> | |
| 121 | 121 | <div class="section" id="install-versioned"> | |
| 122 | <span id="index-107"></span><span id="id3"></span><h2>INSTALL_VERSIONED<a class="headerlink" href="#install-versioned" title="Permalink to this headline">¶</a></h2> | ||
| 122 | <span id="index-136"></span><span id="id3"></span><h2>INSTALL_VERSIONED<a class="headerlink" href="#install-versioned" title="Permalink to this headline">¶</a></h2> | ||
| 123 | 123 | <p><strong>ON</strong> by default on unix, <strong>OFF</strong> on windows.</p> | |
| 124 | 124 | <p>This is a different mangling than <a class="reference external" href="build_configuration.html#winmangle-libnames"><em>WINMANGLE_LIBNAMES</em></a>: this | |
| 125 | 125 | variable controls whether boost versions will be mangled into the | |
| … | … | ||
| 159 | 159 | with the following two variables:</p> | |
| 160 | 160 | </div> | |
| 161 | 161 | <div class="section" id="boost-lib-install-dir"> | |
| 162 | <span id="index-108"></span><span id="id4"></span><h2>BOOST_LIB_INSTALL_DIR<a class="headerlink" href="#boost-lib-install-dir" title="Permalink to this headline">¶</a></h2> | ||
| 162 | <span id="index-137"></span><span id="id4"></span><h2>BOOST_LIB_INSTALL_DIR<a class="headerlink" href="#boost-lib-install-dir" title="Permalink to this headline">¶</a></h2> | ||
| 163 | 163 | <p>The directory to which libs will be installed under | |
| 164 | 164 | <a class="reference internal" href="#cmake-install-prefix"><em>CMAKE_INSTALL_PREFIX</em></a>.</p> | |
| 165 | 165 | </div> | |
| 166 | 166 | <div class="section" id="boost-include-install-dir"> | |
| 167 | <span id="index-109"></span><span id="id5"></span><h2>BOOST_INCLUDE_INSTALL_DIR<a class="headerlink" href="#boost-include-install-dir" title="Permalink to this headline">¶</a></h2> | ||
| 167 | <span id="index-138"></span><span id="id5"></span><h2>BOOST_INCLUDE_INSTALL_DIR<a class="headerlink" href="#boost-include-install-dir" title="Permalink to this headline">¶</a></h2> | ||
| 168 | 168 | <p>The directory to which boost header files will be installed under | |
| 169 | 169 | <a class="reference internal" href="#cmake-install-prefix"><em>CMAKE_INSTALL_PREFIX</em></a>.</p> | |
| 170 | 170 | </div> | |
| 171 | 171 | <div class="section" id="boost-cmake-infrastructure-install-dir"> | |
| 172 | <span id="index-110"></span><span id="id6"></span><h2>BOOST_CMAKE_INFRASTRUCTURE_INSTALL_DIR<a class="headerlink" href="#boost-cmake-infrastructure-install-dir" title="Permalink to this headline">¶</a></h2> | ||
| 172 | <span id="index-139"></span><span id="id6"></span><h2>BOOST_CMAKE_INFRASTRUCTURE_INSTALL_DIR<a class="headerlink" href="#boost-cmake-infrastructure-install-dir" title="Permalink to this headline">¶</a></h2> | ||
| 173 | 173 | <p>This is a directory to which the targets from this boost install will | |
| 174 | 174 | be exported, by default <tt class="docutils literal"><span class="pre">${CMAKE_INSTALL_PREFIX}/share/boost-</span></tt>1.41.0<tt class="docutils literal"><span class="pre">/cmake</span></tt>: this significanly eases detection of boost | |
| 175 | 175 | installations by CMake. The name of the files are | |
| … | … | ||
| 180 | 180 | interpreted relative to <tt class="docutils literal"><span class="pre">${CMAKE_INSTALL_PREFIX}</span></tt>.</p> | |
| 181 | 181 | </div> | |
| 182 | 182 | <div class="section" id="boost-install-cmake-drivers"> | |
| 183 | <span id="index-111"></span><span id="id8"></span><h2>BOOST_INSTALL_CMAKE_DRIVERS<a class="headerlink" href="#boost-install-cmake-drivers" title="Permalink to this headline">¶</a></h2> | ||
| 183 | <span id="index-140"></span><span id="id8"></span><h2>BOOST_INSTALL_CMAKE_DRIVERS<a class="headerlink" href="#boost-install-cmake-drivers" title="Permalink to this headline">¶</a></h2> | ||
| 184 | 184 | <p>Specifies whether generic cmake driver files should be installed, | |
| 185 | 185 | see the next option to customize where. This variable is | |
| 186 | 186 | <tt class="docutils literal"><span class="pre">ON</span></tt> by default.</p> | |
| … | … | ||
| 202 | 202 | relative to <tt class="docutils literal"><span class="pre">${CMAKE_INSTALL_PREFIX}</span></tt>.</p> | |
| 203 | 203 | </div> | |
| 204 | 204 | <div class="section" id="boost-exports-file"> | |
| 205 | <span id="index-112"></span><span id="id9"></span><h2>BOOST_EXPORTS_FILE<a class="headerlink" href="#boost-exports-file" title="Permalink to this headline">¶</a></h2> | ||
| 205 | <span id="index-141"></span><span id="id9"></span><h2>BOOST_EXPORTS_FILE<a class="headerlink" href="#boost-exports-file" title="Permalink to this headline">¶</a></h2> | ||
| 206 | 206 | <p>This is the path <em>in the build tree</em> to the file that will contain | |
| 207 | 207 | CMake exported targets, by default it is:</p> | |
| 208 | 208 | <div class="highlight-python"><pre>${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/Exports.cmake</pre> | |
| … | … | ||
| 215 | 215 | interpreted relative to <tt class="docutils literal"><span class="pre">${CMAKE_BINARY_DIR}</span></tt>.</p> | |
| 216 | 216 | </div> | |
| 217 | 217 | <div class="section" id="boost-exports-install-dir"> | |
| 218 | <span id="boost-install-exports-file"></span><span id="index-113"></span><h2>BOOST_EXPORTS_INSTALL_DIR<a class="headerlink" href="#boost-exports-install-dir" title="Permalink to this headline">¶</a></h2> | ||
| 218 | <span id="boost-install-exports-file"></span><span id="index-142"></span><h2>BOOST_EXPORTS_INSTALL_DIR<a class="headerlink" href="#boost-exports-install-dir" title="Permalink to this headline">¶</a></h2> | ||
| 219 | 219 | <p>This is the path to which exported targest will be installed. By | |
| 220 | 220 | default it is <tt class="docutils literal"><span class="pre">${BOOST_LIB_INSTALL_DIR}</span></tt>. This must be a | |
| 221 | 221 | <strong>relative</strong> path.</p> | |
| … | … | ||
| 244 | 244 | <a href="genindex.html" title="General Index" | |
| 245 | 245 | >index</a></li> | |
| 246 | 246 | <li class="right" > | |
| 247 | <a href="faq.html" title="FAQ" | ||
| 247 | <a href="find_package_boost.html" title="find_package(Boost)" | ||
| 248 | 248 | >next</a> |</li> | |
| 249 | 249 | <li class="right" > | |
| 250 | 250 | <a href="exported_targets.html" title="Tricks for Building against Boost with CMake" | |
| … | … | ||
| 256 | 256 | </ul> | |
| 257 | 257 | </div> | |
| 258 | 258 | <div class="footer"> | |
| 259 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 259 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 260 | 260 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 261 | 261 | </div> | |
| 262 | 262 | </body> |
|   | |||
| 321 | 321 | </ul> | |
| 322 | 322 | </div> | |
| 323 | 323 | <div class="footer"> | |
| 324 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 324 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 325 | 325 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 326 | 326 | </div> | |
| 327 | 327 | </body> |
|   | |||
| 341 | 341 | </ul> | |
| 342 | 342 | </div> | |
| 343 | 343 | <div class="footer"> | |
| 344 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 344 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 345 | 345 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 346 | 346 | </div> | |
| 347 | 347 | </body> |
|   | |||
| 213 | 213 | </ul> | |
| 214 | 214 | </div> | |
| 215 | 215 | <div class="footer"> | |
| 216 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 216 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 217 | 217 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 218 | 218 | </div> | |
| 219 | 219 | </body> |
|   | |||
| 298 | 298 | </ul> | |
| 299 | 299 | </div> | |
| 300 | 300 | <div class="footer"> | |
| 301 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 301 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 302 | 302 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 303 | 303 | </div> | |
| 304 | 304 | </body> |
|   | |||
| 145 | 145 | </ul> | |
| 146 | 146 | </div> | |
| 147 | 147 | <div class="footer"> | |
| 148 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 148 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 149 | 149 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 150 | 150 | </div> | |
| 151 | 151 | </body> |
|   | |||
| 187 | 187 | </ul> | |
| 188 | 188 | </div> | |
| 189 | 189 | <div class="footer"> | |
| 190 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 190 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 191 | 191 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 192 | 192 | </div> | |
| 193 | 193 | </body> |
|   | |||
| 106 | 106 | </ul> | |
| 107 | 107 | </div> | |
| 108 | 108 | <div class="footer"> | |
| 109 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 109 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 110 | 110 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 111 | 111 | </div> | |
| 112 | 112 | </body> |
|   | |||
| 106 | 106 | </ul> | |
| 107 | 107 | </div> | |
| 108 | 108 | <div class="footer"> | |
| 109 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 109 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 110 | 110 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 111 | 111 | </div> | |
| 112 | 112 | </body> |
|   | |||
| 106 | 106 | </ul> | |
| 107 | 107 | </div> | |
| 108 | 108 | <div class="footer"> | |
| 109 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 109 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 110 | 110 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 111 | 111 | </div> | |
| 112 | 112 | </body> |
|   | |||
| 106 | 106 | </ul> | |
| 107 | 107 | </div> | |
| 108 | 108 | <div class="footer"> | |
| 109 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 109 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 110 | 110 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 111 | 111 | </div> | |
| 112 | 112 | </body> |
|   | |||
| 106 | 106 | </ul> | |
| 107 | 107 | </div> | |
| 108 | 108 | <div class="footer"> | |
| 109 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 109 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 110 | 110 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 111 | 111 | </div> | |
| 112 | 112 | </body> |
|   | |||
| 96 | 96 | </ul> | |
| 97 | 97 | </div> | |
| 98 | 98 | <div class="footer"> | |
| 99 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 99 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 100 | 100 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 101 | 101 | </div> | |
| 102 | 102 | </body> |
|   | |||
| 101 | 101 | </div> | |
| 102 | 102 | ||
| 103 | 103 | <div class="footer"> | |
| 104 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 104 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 105 | 105 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 106 | 106 | </div> | |
| 107 | 107 | <script type="text/javascript" src="searchindex.js"></script> |
|   | |||
| 1 | Search.setIndex({desctypes:{"0":"cmake"},terms:{windowsinstal:6,xpressiv:6,add_compiled_librari:6,prefix:[2,5],sleep:2,compile_flag:[18,20,7,8],whose:11,swap:6,under:[26,0,2,22,5,8],preprocess:[9,29],accum:2,everi:[1,27,16],risk:29,debug_compile_flag:11,ctest_binary_directori:2,upstream:[6,10,5,0,9],affect:[11,18,16,2,7],boost_prg_exec_monitor:[29,5],edit_cach:[11,29],math:6,x86_64:2,properti:[27,16,8],zinc:2,xsltproc:[11,6,25,15,9],direct:[20,2,0,8],second:[20,0],asio:6,boost_filesystem:[11,18,7,8,29],individual_librari:6,usenet:9,cdashpubl:2,"new":[10,1,2,20,18,5,8],net:27,dashboard:[9,2],elimin:16,behavior:[27,16,17,18,20,7],dart_testing_timeout:[11,2],here:[9,27,10,0,11,2,20],studio:[9,2,0,11,31,19,5],path:[26,27,0,21,1,2,4,11,22,5,23,33,15,7,18],interpret:22,cmakedashboard:2,prg_exec_monitor:29,package_sourc:29,portabl:[20,16,8,17],ctest_initial_cach:2,unix:[9,16,0,11,31,2,18,22,8],total:10,unit:[6,0],describ:[16,0,1,2,20,8],would:[18,16,10,27],contains_test:2,with_doxygen:35,call:[27,10,11,2,20,19,16,7,8],python26:0,recommend:[27,2],type:[29,31,2],tell:[27,19],genindex:6,boost_sign:[1,29,27,16],notic:2,icu_i18n_found:33,warn:[11,2,5],include_directori:[27,8],hold:0,unpack:27,must:[22,16,5,27],cpacksourceconfig:0,join:27,setup:[2,5],work:[27,10,0,2,20,29,5],not_featur:18,extra_vari:18,root:[9,7],overrid:[6,27,21],give:[11,2],rpath:27,extended_p_squar:2,indic:[1,18,16,7,8],want:[9,10,11,2,20,18,22,5,7,8],shuffl:5,quot:[11,2],searchtool:6,how:[9,10,0,1,2,22,20,19,16,8],avaiabl:0,env:0,config:[6,2],"void":[27,0],updat:[9,27,2,10],recogn:[20,8],earlier:0,boost_vers:27,befor:[20,2,8],wrong:[27,5],flanboost:0,parallel:[29,2],demonstr:5,attempt:27,dbuilding_boost_libnam:8,cmake_binary_dir:[11,9,22,27],exclud:2,receiv:10,maintain:[10,5,17],environ:[21,27,5,0],enter:29,first:[9,27,10,0,11,2,20,22,5],someplac:[9,27],order:5,oper:[31,16],feedback:2,offici:5,govern:2,lowman:5,becaus:8,vari:16,suffix:5,output_vari:2,fix:5,function_n_test:2,smart_ptr:[1,6],persist:11,easier:[11,16],them:[9,27,16,0,2,5,6],thei:[10,22,2,0,17],proce:8,safe:8,bane:11,bimap:6,boost_date_tim:[29,0],choic:7,dcmake_install_prefix:[22,5,0],arrow:11,each:[26,27,16,1,2,20,18,25,7,8],debug:[27,16,21,11,18,29,7,8],mean:[18,16,10],prohibit:16,doug:17,network:[9,8],smp:2,content:[6,2],cmake_color_makefil:11,reader:2,lib64:[22,5,27],boost_include_install_dir:[9,22],barrier:18,situat:27,free:5,standard:[26,11,35,4,32,33,22,5,23,15,13],fixm:[28,30,3,12,24,14],precompil:0,reconfigur:[1,11,2],angl:17,filter:11,isn:[2,5],regress:[1,9,2,17,20],confus:[27,5],rang:6,independ:[9,27],wast:5,get_properti:11,instruct:[1,20,2,0,8],alreadi:[10,2,20,29,34,8],primari:[31,8],hood:8,top:[2,0],sometim:8,orly_yarli:5,master:10,too:[11,10,5],toolset:0,mysrc2:8,mysrc1:8,tool:[26,9,10,0,17,29,11,31,18,16,34,6,7,8],d2bc809:10,somewhat:0,enable_:[16,5],vc90:0,target:[9,27,16,0,29,11,31,2,18,22,5],provid:[16,0,17,29,1,31,2,20,18,7,8],tree:[27,0,1,2,20,22],project:[9,27,10,0,17,29,1,2,20,11,22,16,5,8],matter:27,minut:2,dboost_signals_dyn_link:29,selftest_report:6,manner:27,incompat:18,minu:6,with_python:25,rwxr:11,feasabl:10,browsabl:2,big_test2:20,big_test1:20,simplifi:2,though:11,object:[27,16,0,29,10,6,8],regular:2,phase:11,gmane:5,boost_regex:[18,29],don:[11,10,2,7,8],doc:[9,27,10,22,5,6],doe:[26,16,1,2,5,15,8],bracket:17,abi:0,yes_i_know:5,dot:27,opposit:20,random:[20,6],syntax:2,winmangle_libnam:[11,9,22],identifi:[1,16],submit:[9,2],layout:[6,0],menu:[11,0],explain:[22,5],configur:[9,27,16,0,29,11,2,22,20,21,19,5,25,8],theme:6,oct:11,ctest_ctest_command:2,stop:2,report:2,bat:10,enable_releas:[11,9,16],visualstudioesqu:19,patch:[9,10],reload:[2,8],testdir:[1,20,17],commandlin:[11,9,19,10],output_nam:7,result:[9,27,16,11,2,18],fail:[20,2],hash:6,blei:5,best:2,hopefulli:1,figur:2,awai:5,irc:9,imported_location_releas:27,extens:31,preprocessor:[6,0,29],howev:[18,16,7],against:[9,27,16,18,20,22,10,7,8],logic:6,with_mpi:32,com:[9,2,0,17],ld_library_path:27,permut:16,dougla:17,diff:[6,10,9],guid:[9,16],assum:[27,16,17,2,20,29,5,8],summar:17,bzip2_found:23,building_boost_libnam:8,three:[27,16],been:[11,27,2,7,0],accumul:[11,6,2],trigger:[11,21,2],dep1:7,interest:29,dep2:7,enable_stat:[11,9,16],tini:5,quickli:10,life:8,boostconfigagnost:6,suppress:[18,16],argument:[27,29,11,20,18,5,7],multithread:[27,16],build_test:[11,9,2,17,20],emploi:22,inhibit:[18,16],ident:10,gnu:[25,2],zlib:[6,25,4,9],compile_test:20,sln:[19,2,0],"typeof":6,spawn:0,expat:[9,18,13,6,25,7],conf:6,tediou:29,sever:[18,2,7,0,8],perform:[11,16,0],make:[9,27,10,0,29,11,31,2,20,18,22,16,5,8],build_project:[11,9,5],complet:[18,16,10,7,0],pydebug:16,hand:11,set_target_properti:27,boost_libname_dyn_link:8,kib:10,anarchist:9,tune:0,kid:9,thu:11,thi:[0,1,2,5,6,7,8,9,10,11,16,17,18,19,20,21,22,25,27,29,31,34],endif:[10,8],everyth:8,left:17,container_sink_exampl:29,just:[9,10,0,17,11,2,29,5,8],boost_test_run_fail:[20,6,24,9],whatnot:0,yet:11,languag:2,easi:2,explanatori:0,tast:19,boost_root:11,opt:2,donat:2,fusion:[20,6],specif:[16,0,11,20,18,5,8],manual:[11,5],showstopp:0,www:[9,2,0,8],right:[1,11,2,8],old:2,interv:6,excerpt:11,intern:[9,25,33],successfulli:21,txt:[9,27,10,0,21,1,2,20,11,29,16,5,6,7,8,18],bottom:0,icc:2,fpic:[29,27],condit:18,foo:22,icu:[6,25,33,9],core:[18,2,7,17],plu:6,repositori:[9,2,0,10],post:2,unsaf:8,set_asid:6,commit:[9,10],produc:[20,16,2,31],ppc:11,underli:[5,8],justsoftwaresolut:17,down:11,creativ:5,wrap:27,opportun:0,git:[6,10,2,0,9],wai:[27,2,19,20,21,5,8],support:[9,16,5,8],avail:[9,27,16,0,29,10],reli:8,editor:[1,20,8],gil:6,head:[9,10],build_vari:6,form:31,build_:5,"true":[19,2],freenod:9,reset:10,with_expat:13,supp:6,until:2,rerun:11,list_install_compon:29,featur:[9,16,11,19,18,5,25,7,8],semicolon:[11,2],xsltproc_found:15,"abstract":16,exist:8,check:[10,0,29,2,21,5,8],tip:26,test:[26,9,17,21,1,2,20,18,29,5,6,34],node:2,matur:9,faster:16,my_program:27,pathnam:22,time:[10,0,11,2,29,22,16,5,25,8],push:9,backward:27,adding_regression_test:6,skip:[1,21,5,8,29],dcmake_is_experiment:5,global:16,decid:8,middl:11,depend:[26,9,27,0,29,11,2,20,18,5,34,25,7,8],graph:6,intermedi:5,"1_35":29,"1_34":11,sourc:[9,27,10,0,17,29,1,2,20,18,19,16,5,6,7,8],string:[11,6,16,2,17],imported_link_interface_libraries_releas:27,unfamiliar:10,lrt:27,run_test:2,exact:26,cool:9,level:[16,2,0],dboost_all_no_lib:29,gui:[2,0,1,19,11,5],iter:6,enable_featur:16,dir:[11,29,27,2,0],machin:2,htm:10,tss_dll:18,upstream_tag:9,sign:[10,17],boost_test:2,cost:16,port:2,big_test_dl:20,appear:[11,10,2,0],current:[27,17,31,2,20,5,34],macinstal:6,ctest_start_with_empty_binary_directori:2,boost:[0,1,2,5,6,7,8,9,10,11,16,17,18,19,20,21,22,15,26,27,29,31,34],xml:6,gener:[27,16,0,17,1,2,22,11,19,18,7],modif:22,address:[8,17],along:20,wait:29,box:[11,0],cronjob:2,png_include_dir:8,behav:27,boost_program_opt:7,extra:[16,18,31,2,34,8],tweak:[2,5],modul:[16,17,18,34,6,7,8],named_slot_map:29,prefer:11,ipp:6,visibl:2,instal:[9,27,10,0,29,1,31,2,20,11,22,5,7,8],installdir:5,regex:[6,29],sum_avg_port:2,thrd:27,univers:11,todai:9,subvers:2,boost_exports_fil:[9,22,10],scope:27,checkout:[9,2,0,10],dboost_signals_no_lib:[18,29],boost_lib_install_dir:[9,22],capit:1,libdepend2:[18,34],peopl:10,enhanc:5,visual:[9,2,0,11,31,19,5],oop:[9,10],boost_1_41_0_beta1:5,graphic:[31,8],boost_cmake_drivers_install_dir:[9,22],prepar:0,uniqu:16,function_typ:6,whatev:[9,10,33],xinclud:[11,15],gitlex:6,sourcefil:7,predict:0,multi_threaded_link_flag:[18,7],topic:27,independenli:5,no_featur:18,occur:5,alwai:[11,18,7,29],multipl:[20,9,27,8],write:[5,8],foreach:6,docbook_dtd_dir:11,xsltproc_execut:15,clone:[10,0],valgrind_flag:26,usabl:10,intrus:6,mac:[11,18,31,16,5],mai:[11,16,2,27,0],drastic:16,install_vers:[11,9,22,27],cmakebeta3:[9,5],cmakebeta1:5,nullsoft:31,favorit:[1,20,8],mangl:[11,9,22,16,27],inform:[32,27,10,11,35,2,20,22,16,5,13,8],"switch":[11,9,19,10,5],combin:[16,8],enable_dynamic_runtim:[9,16],talk:27,anticip:2,recommendataion:2,circular_buff:6,gitignor:6,still:[16,17],dynam:16,findboost:27,group:[11,29],thank:5,platform:[18,20,31,2,0],window:[9,10,0,1,31,2,11,22,16,5,8],mail:[9,10,5,17],main:[6,27],non:[20,16],halt:2,initi:[11,10,2,5,0],therebi:25,now:[10,0,2,20,5,8],valgrind_found:26,name:[9,27,16,0,17,29,1,31,2,20,11,22,5,34,7,8,18],kitwar:2,didn:27,revert:[9,10],separ:[9,0,11,2,18,22,8],compil:[9,27,16,0,17,29,1,2,20,11,19,18,23,25,7,8],replac:[27,0],individu:[9,16,2,22,29],continu:[9,2],dpython_librari:21,backport:5,significantli:2,happen:[25,0],simple_test:20,space:16,profit:19,correct:27,after:[11,20,10,8],org:[9,10,0,2,5,8],"byte":6,care:2,couldn:19,thing:[10,27,2,5,0],place:[2,5],okai:0,silver:2,lambda:6,origin:10,enable_debug:[11,9,16],directli:[22,16],onc:[9,0,21,1,2,20,18],arrai:6,with_bzip2:23,yourself:[11,29,5],reopen:2,build_bcp:11,xtime:18,oppos:18,dbuild_whatev:2,open:19,size:0,given:[27,16,0,18,5,25,7],breviti:27,convent:[27,16,0],conveni:11,jamfil:6,copi:[16,2,0],boost_exports_install_dir:[9,22],specifi:[27,17,21,11,18,22,5,8],python_nodebug:18,enclos:2,boost_include_dir:27,mostli:0,than:[9,16,18,22,10,7,8],png:[6,10,8],targest:22,feature_link_flag:[18,9,16,7],posix:6,pre:0,sai:[11,20,8,29],bootstrap:10,ani:[27,10,0,29,1,31,2,20,18,16,6,25,8],dash:2,docbook_xsl_dir:11,zlib_librari:4,techniqu:9,note:[9,27,16,0,11,2,22,21,19,5,34,7],take:[10,0,18,2,29,7],cmake_prefix_path:27,noth:10,enable_shar:[11,9,16],begin:16,sure:[20,2,8],normal:18,track:10,compress:[31,10],toplevel:[11,9,27,2,5],beta:5,later:[2,5],runtim:0,cmakelist:[9,27,10,29,1,20,11,5,6,7,8,18],troi:[11,29,27,2],boost_mpi_python:18,show:[26,27,10,11,2,19,16],atom:16,maint:17,hack:[9,10],slot:29,onli:[27,10,17,21,1,31,2,20,11,22,16,5,6,34,7,8,18],activ:[11,17],state:[18,7,8],jamroot:10,ubla:6,lib_function_test:2,cpack:31,variou:[11,16,0],get:[27,10,0,1,2,11,22,16],not_multi_thread:8,contains2_test:2,ssl:6,cannot:[27,8],requir:[20,27,16,5,8],execute_process:2,sonam:11,cpackconfig:0,where:[9,16,0,17,1,2,20,18,22,5,34,7],wiki:[9,10,5],boost_python:18,darwin:[20,2],nonstandard:[11,27,2,5],detect:[16,0,33,11,35,4,32,21,22,5,23,25,13],review:10,git_diff:6,listinfo:[9,5],between:[6,16,9],"import":[27,16,8],across:20,comp:5,screen:2,type_trait:[6,0],gregorian:0,boost_back_inserter_exampl:29,collect2:27,libboost_wav:0,pythonlib:0,come:[10,2],function_test_fail1:2,boostextern:6,mani:[20,29,5,8],function_test_fail2:2,color:11,colon:18,typic:[21,27,16,8,29],rebuild:[9,2,8],invers:2,boost_1_38_0:5,enable_multi_thread:[11,9,16],boostcon:9,thousand:2,bmp:6,graph_parallel:[6,2],workspac:29,i18n:33,spirit:6,those:[10,16,2,34,8],boostcor:[11,6,7,17,18],"case":[18,16,2,7,27],trick:[9,22,27],invok:[1,11,2,5],invoc:[17,29,1,18,34,8],findicu:[6,8],lrwxrwxrwx:11,worri:8,blah:22,with_valgrind:26,pthread:[29,27,16],droppabl:2,sovers:11,subscrib:5,develop:[9,27,31,2,21,22,5],author:[9,17],alphabet:5,same:[27,0,11,31,2,18,22,8],binari:[9,0,17,1,31,2,11,18,7,8],html:[6,10,9,0,8],document:[9,27,10,0,35,2,32,5,13,8],finish:[20,2],boost_library_project:[9,17,1,20,11,6,8],driver:22,capabl:[5,8],improv:[16,5],extern:[26,9,27,18,5,6,25,7,8],tss_hook:18,"break":10,appropri:[11,27,7,0,8],choos:[11,2,0],macro:[16,17,11,20,18,34,7,8],multi_index:6,reconfig:9,without:[11,10,22,2,5],imported_soname_releas:27,roughli:0,execut:[26,27,16,0,17,29,11,31,2,20,21,19,15,7],when:[9,27,10,0,17,11,2,4,20,18,22,16,5,23,7,8],rest:7,aspect:11,boostconfig:[6,22,16],lib2:[18,7],lib1:[18,7],function_arith_cxx98:2,except:[18,6,17],littl:2,multi_threaded_compile_flag:18,identif:[25,2],function_arith_porta:2,bcp_imp:29,boost_platform:11,real:[27,8],cregex:18,around:5,read:2,dart:2,dark:6,earnest:9,dirti:5,intel:[2,5],boost_modul:[30,6,9],integ:6,server:2,either:[27,17,1,2,21,5,8],"_static":6,output:[26,27,10,0,11,31,2,20,21,5,25,7],manag:9,boost_add_librari:[9,16,17,29,11,18,6,8],intact:19,link_flag:[18,7,8],cmake_install_prefix:[9,27,0,11,22,5],definit:[16,8],evolv:10,exit:[11,20,27],boost_dir:[9,27],refer:[9,16,18,6,7,8],inspect:[6,0],boost_install_exports_fil:10,broken:5,boost_wav:7,src:[27,10,0,17,21,1,2,29,11,22,5,6,25,8,18],central:[22,2],stand:9,routin:[18,8],strip:29,your:[27,10,0,21,1,2,29,20,11,19,5,8],fast:[29,10],log:2,area:9,aren:0,start:[9,16,0,11,2,20,22,8],interfac:[11,10],lot:[6,2],unam:2,tupl:6,intraboost:7,longer:2,pull:[11,10],nmake:[11,9,2,0],possibl:[9,2],"default":[9,27,10,0,21,11,29,18,22,16,25,7,8],static_compile_flag:18,unusu:27,multi_arrai:6,connect:29,boost_depend:[20,34],creat:[9,27,10,0,17,1,31,2,20,11,16,18,8],scriptabl:31,file:[9,27,10,0,17,21,1,2,29,20,11,22,16,18,6,34,7,8],momentarili:2,"0x000000000000000e":11,cmakecach:[11,9,16,0,21],valid:29,compet:5,ignor:[11,9,2,8,29],you:[26,9,27,10,0,21,1,2,29,20,11,22,16,5,34,25,7,8],symbol:[16,8],cmake_minimum_requir:10,feature_link_lib:[18,9,16,7],fatal_error:10,reduc:2,dboost_thread_build_lib:18,directori:[27,10,0,17,29,11,2,22,20,21,19,5,34,7,8],descript:[7,17],gitori:[9,10,0],cpp:[27,16,0,18,20,29,6,7,8],escap:[11,2],unset:5,all:[9,27,10,0,17,29,11,31,2,18,16,5,34,25],boost_1_41_0:6,forget:[11,2],build_libnam:8,abil:11,follow:[26,27,16,0,17,29,1,31,2,4,20,18,22,34,23,33,15,8],alt:[6,9],disk:[11,27,16,31],python_execut:[9,25,21],cmake_c_compil:2,program:[27,16,0,11,31,2,8],std_bind_port:2,introduc:[1,16],icu_include_dir:33,far:16,mpl:[6,0],faq:[6,19,9],mpi:[9,2,32,5,6,25],util:[6,2],failur:5,veri:[10,16,2,0,8],doctool:6,statechart:6,boost_add_execut:[6,7,17,9],list:[9,27,10,17,29,11,2,20,18,16,5,34,7,8],helloworld:27,boost_thread:[18,27,16],lpthread:[27,16],small:6,install_custom:6,function_30:2,past:2,zero:20,pass:[27,0,29,11,2,20,18,5,7,8],what:[19,16,2,0,8],navig:[6,19],onfigur:11,section:[20,2,0,8],abl:[16,0],brief:17,delet:[11,6,10,21],version:[9,27,10,0,11,31,2,22,16,5,6,8],program_opt:[6,0],full:[16,11,2,33,22,5],themselv:8,allocator_test:2,modular:[34,5,17],trunk:2,modifi:[21,22,19,5],valu:[11,2,5,8],search:[26,27,0,6,15,8],boost_test_compil:[20,6,28,9],ahead:10,boost_library_vari:11,pick:[19,10],via:[9,27,10,29,13,2,35,4,20,21,22,5,23,33,32,7,8],readili:16,cmake4:[9,5],cmake1:[9,5],cmake0:[9,5,0],cmake3:[9,5],cmake2:[9,5],select:[11,0],distinct:16,two:[27,0,2,20,21,22,5],link_lib:[18,7,8],taken:34,findpng:8,toggl:[11,16],more:[27,10,0,11,35,31,2,22,32,29,19,16,5,25,13,8],add_execut:27,tester:2,cmaken:5,flag:[26,9,16,29,18,2,20,21,19,23,7,8],particular:[16,11,18,5,7,8],known:[9,5],cach:[11,2],none:[11,16,2,5],enable_if:6,remain:[5,8],learn:2,deb:5,add_librari:27,prompt:[10,2,0],scan:[29,0],challeng:8,share:[27,16,0,29,11,20,18,22,7,8],minimum:5,explor:[9,2],unlucki:2,rather:[18,16,8],anoth:[18,31,16],readelf:11,simpl:[11,20,8],css:[6,10],regener:[11,19],variant:[9,16,11,2,18,5,6,7,8],catalog:6,buildspac:[11,9,0],associ:[25,8],stabil:11,proto:6,caus:[1,18,5],container_device_exampl:29,checkbox:19,help:[29,16,2,27,8],boost_test_run:[20,6,3,9],signal_bas:29,i386:11,through:[18,29,16,5],hierarchi:[9,29],paramet:[18,6,7,34,17],boost_version_minor:5,sodium:[9,0],brows:0,wipe:2,pend:27,projn:5,might:[18,20,7,29],good:11,"return":[20,27],no_instal:7,icpc:2,dpython_include_path:21,tortoisegit:10,complain:21,build_instal:6,proj2:5,e26008:10,proj1:5,compiletest:6,unlik:[18,7],dbuild_test:2,easili:[31,8],token:6,found:[26,0,33,4,21,5,23,15,8],unicod:[9,25,33],subsystem:2,dcmake_cxx_compil:[11,2],hard:10,procedur:10,expect:[20,5],add_boost_librari:6,todo:[6,2],footnot:[22,16,27],advanc:[11,19,2],quick:5,reason:[11,2],base:[9,16,1,2,20,18,5,34,8],ask:[19,5,0],release_compile_flag:[11,19,16],icu_found:33,bash:10,thread:[27,16,17,11,18,22,6,7,8],omit:[11,29,5],perhap:[11,8],perman:11,assign:6,install_m:6,intimid:5,number:[16,2],placehold:[18,7],done:[11,10,2,0,20],author1:17,author2:17,dylib:16,stabl:9,miss:[11,0],valgrind_execut:26,differ:[9,10,0,18,31,2,20,22,16,6,7,8],script:[31,2],ton:9,scheme:2,store:[11,20],option:[9,16,0,17,21,11,2,22,20,18,19,34,5,6,25,7,8],build_inspect:11,checklist:9,searchindex:6,pars:2,std:27,notfound:11,kind:[18,16,7,0],grep:[11,16,2,27],whenev:8,remot:10,zipfil:[9,0],remov:0,boostdoc:6,jqueri:6,reus:10,dlib_suffix:22,greg_month:0,tenac:5,packag:[9,0,31,29,5,8],dedic:5,built:[27,16,0,17,21,11,20,18,29,5,7,8],lib:[27,10,0,21,1,29,20,11,22,16,5,6,8,18],self:[31,0],enable_single_thread:[11,9,16],also:[9,27,10,11,2,22,20,19,16,5,8],drone:2,build:[9,27,10,0,17,29,1,31,2,22,20,11,19,16,5,6,34,7,8,18],notes_by_vers:[6,9],distribut:[9,27,10,0,11,5,7],previou:[2,8],boost_maintain:9,plai:22,lambda_test:2,cmakefil:[29,27,0],maco:2,boost_libnam:[20,8],builddir:29,part:[0,1,31,2,20,33,8],clean:[29,10,5],microsoft:[11,31,16,0],fine:5,find:[27,0,29,1,19,11,22,8],copyright:2,solut:[18,2,0],cmake_library_output_directori:22,libboost_sign:[11,29,22,16],boost_test_compile_fail:[20,6,14,9],unus:17,express:2,interprocess:6,with_:25,"_secure_scl":[9,19],updatectestconfigur:2,crc:[6,0],common:[10,8],reattempt:25,set:[15,9,27,10,0,21,11,2,22,4,18,19,16,5,23,33,26,25,7,8],see:[26,9,27,10,0,21,1,13,31,2,22,32,11,19,16,5,35,29,7,8,18],arg:20,close:2,expert:9,someth:[27,0,11,2,21,5],mutex:18,altern:[9,27,2,5,10],numer:6,libnam:[17,1,20,18,34,8],lowercas:[11,17],distinguish:[16,5],dartconfigur:2,ctest:[20,26,2],both:[17,11,20,22,7,8],compile_fail:20,mem_fun_port:2,enable_whatev:11,"_templat":6,context:16,png_definit:8,whole:2,load:0,simpli:[11,27],python_debug_librari:[9,25,21],point:[27,2,5,0],schedul:2,boostutil:6,rebuild_cach:[11,29],header:[0,1,33,22,5,8],suppli:[11,8],boostconfigversionagnost:6,empti:[25,10,22,17],build_tool:[11,9],unvers:[18,7],nonexist:27,anthoni:17,imag:31,"_sourc":6,look:[27,0,1,2,11,5,8],histor:11,"while":[10,0,17,18,2,20,19,8],abov:[27,16,0,11,2,22,5],error:[11,29,27,2,5],loop:[20,2],ptr_contain:[6,0],earli:8,resophon:[9,2,0],readi:9,itself:[9,16,2,8],costli:16,multi_threaded_link_lib:[18,16],fedora:22,shorter:27,winmangled_libnam:11,flag2:7,flag1:7,conflict:8,optim:16,"_found":25,wherea:2,covari:2,any_test:2,temporari:18,user:[9,16,17,11,31,2,20,22,7,8],stack:11,recent:[11,10],travers:11,task:2,find_packag:[27,35,4,32,33,22,23,13],entri:[21,19],grind:2,memcheck:26,dndebug:[11,29],bzip2:[6,25,23,9],boost_python_modul:[6,12,9],cmaketest:27,cout:27,restructuredtext:9,output_strip_trailing_whitespac:2,any_to_ref_test:2,extended_p_square_quantil:2,bin:[27,0,29,11,2,21,6],format:6,big:27,bit:[22,2],boost_cmake_infrastructure_install_dir:[9,22,27],python_debug:18,cmakebeta4:[9,5],signal:[27,16,29,1,11,18,6,34],resolv:10,collect:[19,2],error_of:2,docbook_autoconfig:11,function_ref_portabl:2,often:[20,16],dllimport:8,creation:[18,16],some:[27,10,18,2,20,29,16,5,8],per:[9,16,11,2,19,8],makecommand:2,larg:[9,2],proj:27,cmake_instal:0,cgi:[9,5],run:[26,27,16,0,29,1,31,2,22,20,11,19,5,8],step:[10,1,31,2,20,11,5,8],prerequisit:[9,29],orli:5,cmake_is_experiment:5,libdepend1:[18,34],most:[11,20,27,16],significanli:22,nsi:31,add_path:29,within:[2,5,8],ensur:7,next:[22,16,2,0],compile_fail_test:20,shared_compile_flag:[18,7,8],gcc41:[11,29],question:[19,2,5],"long":[29,2,0],custom:[9,22,2],boost_thread_build_lib:18,includ:[27,16,0,21,11,2,4,18,22,5,23,6,34,7,8],suit:34,forward:10,properli:1,reorgan:2,pwd:2,link:[9,27,16,0,29,11,2,4,20,18,23,7,8],destdir:[22,5],delta:10,line:[27,16,29,1,2,20,21,5,23],info:0,utc:2,build_boost_wseri:11,similar:[11,20,0],innumer:5,zlib_include_dir:4,quickbook:[11,6],feature_compile_flag:[18,9,16,7],curs:11,with_icu:33,cdash:2,no_single_thread:18,incomplet:5,cmake:[0,1,2,4,5,6,7,25,9,10,11,8,13,16,17,18,19,20,21,22,23,15,26,27,29,31,32,33,34,35],"_imag":6,nice:22,william:17,sphinxdoc:6,svn:[9,2,5,8,10],algorithm:6,set_properti:27,date_gener:0,holewinski:5,code:[20,9,16,0],"1_40":11,scratch:[11,22],exenam:7,with_zlib:4,property_map:6,effort:[9,27],send:9,pulldown:11,lunat:9,tr1:6,sens:[18,16],sensic:16,unzip:11,end:9,wave:[11,6,7,0],mem_fun_cxx98:2,big_test:20,relev:21,random_test:20,tri:27,magic:[19,5],std_bind_cxx98:2,button:0,maint2:17,"try":[9,27,10,11,20,5],pleas:[7,5,0],smaller:16,relink:8,claudio:5,cron:2,download:[9,31,10,0],click:[19,0],append:[18,29,27,8],compat:[6,27],index:[6,2,10],experiment:[2,5],can:[9,27,10,0,17,29,1,31,2,20,11,22,16,5,8],ration:6,greg_weekdai:0,b945719:10,let:[2,8],ubuntu:2,lib_suffix:[9,22,5,27],becom:29,sinc:[25,27,8,17],convers:6,python_found:25,technolog:9,chang:[9,10,0,2,22,19,16,6,8],ccmake:[1,11,2,29],apr:2,appli:[11,9,16],python_include_path:[9,25,21],"boolean":[18,16],encapsul:[16,2],from:[9,27,10,0,21,1,31,2,20,11,22,16,5,34,8,18],gregor:17,modularize_librari:6,dynamic_runtim:16,gcc40:16,few:[11,9,16,5,8],gcc43:11,usr:[27,0,29,11,2,21,22,8],trail:[2,5],rare:18,account:[18,7],dcmake_c_compil:2,png_found:8,rdynam:27,obvious:18,control:[9,27,10,11,22,25],quickstart:[9,0,1,31,2,11,6],tar:31,process:[20,31,27,2,8],lock:16,bzip2_include_dir:23,high:16,tag:[9,2,5,0],tarbal:[9,31,0],msvc:[5,0],serial:6,bzip2_definit:23,boost_iostream:29,gcc:[11,29,2,5,0],filepath:2,imported_configur:27,subdirectori:[9,27,10,0,17,29,1,2,20,11,22,8],instead:[11,17],boost_seri:7,xsltproc_flag:[11,15],essenti:10,function_ref_cxx98:2,bind:6,sit:27,correspond:[11,9,16,0,29],element:16,issu:[9,5],multi_thread:[16,7,8],allow:[11,22,8],ener:11,build_sovers:[11,9,22],move:[9,2,5],selftest_lib:6,comma:2,bunch:0,srcdir:[1,8,17],tss:18,ctestconfig:[6,10],python:[9,0,17,11,2,21,5,6,25],auto:18,overal:16,handi:[22,2],mention:[11,2,5],somewher:[7,0],trac:5,anyth:2,edit:[11,21,0],tran:6,mark_as_advanc:10,mode:[11,19,16],pygment:6,subset:2,libboost_date_tim:0,concept_check:[6,0],dgregor:[20,2],python_librari:[9,25,21],our:[20,2,8],special:[18,16,5],out:[9,27,10,0,2,20,5,8],variabl:[15,26,27,16,0,33,11,2,4,21,22,5,23,25,8],cleanli:27,rel:[18,22,16,8],recursive_mutex:18,red:0,iostream:[27,11,2,29,22,6,8],insid:[10,27,2],boost_system:[11,29],releas:[9,27,16,11,2,22,19,5,6,8],philip:5,boost_install_cmake_driv:[9,22,27],linktest:6,could:[11,20,16,0],timer:6,counterpart:16,intel64:2,outsid:27,retain:16,single_thread:[16,8],dwith_python:25,flyweight:6,perfectli:5,mkdir:[2,5,0],system:[27,10,0,29,1,31,2,20,11,16,5,6,8],messag:[2,5,0],"final":[2,0],shell:[11,10,31,2],disjoint_set:6,ctest_cvs_command:2,rst:[6,10,9],exampledir:[1,11,17],cmake_osx_architectur:[11,9],date_tim:[6,0],trackabl:29,thereaft:22,linker:[9,27,16,18,19,7,8],myproject:27,ctest_command:2,have:[9,27,10,0,17,29,1,2,20,11,22,16,5,34,8,18],reserv:2,need:[27,16,0,1,31,2,20,11,5,34,8,18],turn:[18,2,7],buildinfo:6,screw:[9,10],build_configur:6,bzip2_librari:23,icu_librari:33,mib:10,dynamic_bitset:6,builtin:2,which:[9,27,10,0,17,1,31,2,20,11,22,16,5,34,7,8,18],singl:[18,16,8],preliminari:11,who:[16,10,22],discov:27,eight:2,cmake_verbose_makefil:[11,9,19,29],why:9,gather:2,request:7,determin:[11,18],no_modul:27,occasion:9,dllexport:8,text:[1,20,8],verbos:[11,29,27,2],bring:[16,2],ctest_cmake_command:2,locat:[11,22,5,27],boost_cmake_vers:[6,9],should:[27,16,0,17,21,1,2,20,11,22,18,6,7,8],jam:[6,10],suppos:[20,2],local:[27,10,0,29,11,2,21,22,6],hope:18,srcdir2:17,srcdir1:17,ctestcustom:6,enabl:[16,17,11,2,29,22],minmax:6,d_reentrant:29,contain:[27,16,0,17,29,1,31,2,20,18,22,5,8],thisvers:6,tss_pe:18,view:[11,2],modulo:16,cmake_cxx_compil:[11,9,2],knowledg:16,target_link_librari:27,gmail:17,statu:[10,27,2],dpython_execut:21,dll:[1,18,16,8],written:[9,2,0],selftest_main:6,boostconfigvers:[6,22],kei:11,boost_additional_test_depend:[20,6,34,9],static_tag:18,job:2,entir:21,otherwis:[22,0,8],endl:27,addit:[16,18,10,5,34,7,8],doxygen:[6,25,35,0,9],valgrind:[26,6,25,9],etc:[16,0,17,18,2,29,25,7,8],instanc:[11,29,27,16],ctestnightli:2,comment:2,static_runtim:16,cxx:[29,25,2,27,0],enable_static_runtim:[9,16],arriv:10,commenc:2,respect:[20,8],rpm:5,quit:[10,0],mailman:[9,5],zlib_found:4,compon:[9,27,16,33,22,25],build_vers:11,certain:[16,5,0,8],dure:11,presenc:34,togeth:8,lboost_thread:27,present:[1,11,27,18,21],multi:[18,16,7,8],dboost_signals_mt_shared_export:29,exported_target:6,defin:[16,17,18,22,34,7,8],cvscommand:2,customiz:[22,5],site:2,testdir2:17,testdir1:17,archiv:[16,5],fiddl:27,revis:2,cmake_system_prefix_path:27,terrorist:9,boost_unit_test_framework:5,handl:8,stateless_test:2,difficult:10,nightli:[9,2],http:[9,2,5,0,8],hostnam:2,again:[27,2,0,11,19,5],effect:[11,22],sooner:2,php:2,expand:16,off:[27,16,29,11,18,22,25,7],well:[27,10],exampl:[9,27,16,17,29,11,2,20,18,22,5,6,34,7,8],command:[26,16,0,21,1,2,29,20,11,19,5],filesystem:[11,6,8,17,29],usual:[11,2,8],license_1_0:10,boost_librari:27,tcl:2,variant1:18,variant2:18,static_assert:6,wed:2,makefil:[0,17,29,1,31,2,11,22,6],add:[27,10,17,18,2,20,34,7,8],match:11,agnost:22,howto:5,source2:[18,7],source1:[18,7],know:[1,27],press:11,python3:21,signals2:6,insert:[6,10],d5e055:10,resid:[1,20,2,8],like:[27,0,21,1,2,20,11,22,5,7,18],success:[20,25,0],corpor:2,boosttest:[6,34],unord:6,necessari:[20,27,5,0],dboost_thread_build_dl:18,page:[1,9,20,0,8],sum_avg_cxx98:2,revers:11,boost_1_35_0:29,linux:[11,16,2,5,27],libboost_thread:[11,27],build_exampl:[11,9,2,5,17],"export":[21,22,27,8],home:[9,27,2,29],librari:[9,27,16,0,17,21,1,2,29,4,20,11,22,5,23,33,34,25,7,8,18],tmp:[22,10,5,0],incant:22,borland:0,avoid:16,dboost_libname_dyn_link:[20,8],leav:[2,5],doxygen_execut:0,vs9:0,usag:20,boost_thread_build_dl:18,simpler:27,about:[9,27,0,1,2,11,22,5],actual:[16,0,17,1,18,7],justin:5,fals:25,disabl:[16,11,2,5,34,25,8],own:[20,29,2,0,8],png_librari:8,automat:[9,16,0,11,2,18],due:2,guard:5,much:[27,16,5,0],pool:6,"function":[6,31,2],beta1:[9,5],basic:[20,6,5,9],uninstal:[9,22,27],eas:[22,27],bug:5,ctest_source_directori:2,count:[10,2],dmg:31,whether:[11,25,27,8,22],wish:0,icu_i18n_librari:33,displai:[11,29,2],troubl:27,below:[6,22,7],"static":[27,16,18,20,29,8],problem:[27,5],ctest_cvs_checkout:2,"int":27,inv:6,rule:[10,8],ing:10,extra_sourc:8,probabl:[11,5],redetect:21,hpp:[6,22,27],percent:10,detail:[6,27,0,29],other:[9,27,11,31,2,20,18,5,7,8],bool:11,futur:5,branch:[9,10,2,29,5,8],varieti:[18,27,7,31],pythoninterp:0,stat:6,png_png_include_dir:8,star:10,cmake_build_typ:11,add_subdirectori:10,sphinx:9,coordin:22,extran:16,libpython3:21,bcp:[6,0,29]},titles:["Quickstart","Adding a Library Project","Testing","boost_test_run","Zlib","Notes by Boost Version","Differences between this release and upstream","boost_add_executable","Adding a Compiled Library to CMake","Boost-CMake 1.41.0.cmake0","Hacking Boost.CMake with Git","Configuring the buildspace","boost_python_module","Expat","boost_test_compile_fail","Xsltproc","Build Variants and Features","boost_library_project","boost_add_library","FAQ","Adding Regression Tests","Python","Customizing the install","BZip2","boost_test_run_fail","External Dependencies","Valgrind","Tricks for Building against Boost with CMake","boost_test_compile","Building individual libraries with cmake","boost_module","Building a Binary Installer","MPI","ICU (International Components for Unicode)","boost_additional_test_dependencies","Doxygen"],modules:{},descrefs:{"":{boost_add_library:[18,0],boost_library_project:[17,0],boost_add_executable:[7,0]}},filenames:["quickstart","add_boost_library","testing","reference/boost_test_run","externals/zlib","notes_by_version","diff","reference/boost_add_executable","add_compiled_library","index","git","build_configuration","reference/boost_python_module","externals/expat","reference/boost_test_compile_fail","externals/xsltproc","build_variants","reference/boost_library_project","reference/boost_add_library","faq","adding_regression_tests","externals/python","install_customization","externals/bzip2","reference/boost_test_run_fail","externals/index","externals/valgrind","exported_targets","reference/boost_test_compile","individual_libraries","reference/boost_module","build_installer","externals/mpi","externals/icu","reference/boost_additional_test_dependencies","externals/doxygen"]}) | ||
| 1 | Search.setIndex({desctypes:{"0":"cmake"},terms:{windowsinstal:6,xpressiv:6,add_compiled_librari:6,prefix:[2,5],sleep:2,compile_flag:[19,21,7,8],whose:11,swap:6,under:[27,0,2,23,5,8],preprocess:[9,30],accum:2,everi:[1,28,17],risk:30,debug_compile_flag:11,ctest_binary_directori:2,govern:2,affect:[11,19,17,2,7],boost_prg_exec_monitor:[30,5],edit_cach:[11,30],math:6,x86_64:2,properti:[28,17,8],abil:11,xsltproc:[11,6,26,16,9],direct:[21,2,0,8],second:[21,0],asio:6,boost_filesystem:[11,19,7,8,30],disk:[11,28,17,32],individual_librari:6,usenet:9,cdashpubl:2,"new":[10,1,2,21,19,5,8],net:[13,28],"typeof":6,elimin:17,behavior:[28,17,18,19,21,7],dart_testing_timeout:[11,2],here:[9,28,10,0,11,2,21,23],studio:[9,2,0,11,32,20,5],path:[27,28,0,22,1,2,4,11,23,5,24,34,26,7,19],interpret:23,cmakedashboard:2,prg_exec_monitor:30,package_sourc:30,portabl:[21,17,8,18],ctest_initial_cach:2,unix:[9,17,0,11,32,2,19,23,8],total:10,unit:[6,0],describ:[17,0,1,2,21,8],would:[19,17,10,28],contains_test:2,with_doxygen:36,call:[28,10,11,2,21,20,17,7,8],python26:0,recommend:[28,2],type:[30,32,2],tell:[28,20],genindex:6,boost_sign:[1,30,28,17],notic:2,icu_i18n_found:34,warn:[11,2,5],include_directori:[13,28,8],hold:0,unpack:28,must:[23,17,5,28],cpacksourceconfig:0,join:28,setup:[2,5],work:[28,10,0,2,21,30,5,13],not_featur:19,extra_vari:19,root:[9,7],overrid:[6,28,22],give:[11,2],rpath:28,extended_p_squar:2,indic:[1,19,17,7,8],want:[9,10,11,2,21,19,23,5,7,8],shuffl:5,quot:[11,2],searchtool:6,how:[9,10,0,1,2,23,21,20,17,8],avaiabl:0,env:0,config:[6,2],"void":[28,0],updat:[9,28,2,10],recogn:[21,8],earlier:[13,0],boost_vers:28,befor:[21,2,8],wrong:[28,5],flanboost:0,parallel:[30,2],demonstr:5,attempt:28,third:13,encapsul:[17,2],cmake_binary_dir:[11,9,23,28],exclud:2,perform:[11,17,0],maintain:[10,5,18],environ:[22,13,5,0,28],enter:30,mxa_boost_headers_onli:13,first:[9,28,10,0,11,2,21,23,5],someplac:[9,28],order:5,oper:[32,17],feedback:2,offici:5,upstream:[6,10,5,0,9],lowman:5,becaus:8,vari:17,dwith_python:16,output_vari:2,fix:5,function_n_test:2,smart_ptr:[1,6],persist:11,easier:[11,13,17],them:[9,28,17,0,2,5,6],thei:[10,23,2,0,18],proce:8,safe:8,bane:11,bimap:6,boost_date_tim:[30,0],choic:7,dcmake_install_prefix:[23,5,0],arrow:11,each:[27,28,17,1,2,21,19,16,7,8],debug:[28,17,22,11,2,19,30,7,8],mean:[19,17,10],prohibit:17,doug:18,network:[9,8],"0x000000000000000e":11,content:[6,2],cmake_color_makefil:11,bzip2_include_dir:24,lib64:[23,5,28],boost_include_install_dir:[9,13,23],barrier:19,boost_1_41_0:6,free:5,standard:[27,11,36,4,33,34,23,5,24,26,14],fixm:[29,31,3,12,25,15],precompil:0,reconfigur:[1,11,2],angl:18,filter:11,isn:[2,5],regress:[1,9,2,18,21],confus:[28,5],rang:6,independ:[9,28],wast:5,get_properti:11,instruct:[1,21,2,0,8],alreadi:[10,2,21,30,35,8],primari:[32,8],hood:8,top:[2,0],sometim:8,orly_yarli:5,master:10,too:[11,10,5],toolset:0,mysrc2:8,mysrc1:8,tenac:5,tool:[27,9,10,0,18,30,11,32,19,17,35,6,7,8],d2bc809:10,somewhat:0,enable_:[17,5],vc90:0,target:[9,28,17,0,30,11,32,2,19,23,5],provid:[17,0,18,30,1,32,2,21,19,7,8],tree:[28,0,1,2,21,23],project:[9,28,10,0,18,30,1,2,21,11,23,17,5,8],matter:28,minut:2,dboost_signals_dyn_link:30,selftest_report:6,manner:28,incompat:19,minu:6,with_python:16,rwxr:11,memcheck:27,browsabl:2,big_test2:21,big_test1:21,simplifi:2,though:11,object:[28,17,0,30,10,6,8],regular:2,phase:11,gmane:5,boost_regex:[19,30],don:[11,10,2,7,8],doc:[9,28,10,23,5,6],doe:[27,17,1,2,5,26,8],bracket:18,onfigur:11,yes_i_know:5,dot:28,opposit:21,random:[21,6],syntax:2,winmangle_libnam:[11,9,23],identifi:[1,17],submit:[9,2],layout:[6,13,0],menu:[11,0],ccmake:[1,11,2,30],configur:[9,16,17,0,30,11,2,23,21,22,20,5,13,28,8],theme:6,png_found:8,ctest_ctest_command:2,stop:2,report:[13,2],bat:10,enable_releas:[11,9,17],visualstudioesqu:20,patch:[9,10],cleanli:28,testdir:[1,21,18],commandlin:[11,9,20,2,10],output_nam:7,result:[9,28,17,11,2,19],fail:[21,2],themselv:8,blei:5,best:2,hopefulli:1,figur:2,awai:5,irc:9,boost_use_multithread:13,imported_location_releas:28,extens:32,preprocessor:[6,0,30],howev:[19,17,7],against:[9,28,10,19,21,23,17,13,7,8],logic:6,with_mpi:33,com:[9,2,0,18],ld_library_path:28,permut:17,dougla:18,diff:[6,10,9],guid:[9,17],assum:[28,17,18,2,21,30,5,8],summar:18,bzip2_found:24,building_boost_libnam:8,three:[28,17],been:[11,28,2,7,0],accumul:[11,6,2],trigger:[11,22,2],dep1:7,interest:30,dep2:7,enable_stat:[11,9,17],tini:5,quickli:10,life:8,boostconfigagnost:6,suppress:[19,17],ani:[28,10,0,30,1,32,2,21,19,17,6,16,8],multithread:[28,17],build_test:[11,9,2,18,21],emploi:23,inhibit:[19,17],ident:10,gnu:[16,2],zlib:[6,16,4,9],compile_test:21,sln:[20,2,0],dashboard:[9,2],spawn:0,expat:[9,19,14,6,16,7],conf:6,tediou:30,sever:[19,2,7,0,8],receiv:10,make:[9,28,10,0,30,11,32,2,21,19,23,17,5,8],build_project:[11,9,5],bluequartz:13,complet:[19,17,10,7,0],screw:[9,10],hand:11,set_target_properti:28,boost_libname_dyn_link:8,kib:10,anarchist:9,tune:0,kid:9,boost_find_requir:13,thu:11,thi:[0,1,2,5,6,7,8,9,10,11,13,17,18,19,20,21,22,23,16,28,30,32,35],endif:[13,10,8],everyth:8,left:18,container_sink_exampl:30,just:[9,10,0,18,11,2,30,5,8],boost_test_run_fail:[21,6,25,9],whatnot:0,yet:11,languag:2,easi:2,explanatori:0,tast:20,boost_root:[11,13],opt:2,donat:2,link_directori:13,fusion:[21,6],specif:[17,0,11,21,19,5,8],manual:[11,5],showstopp:0,www:[9,2,0,8],right:[1,11,2,8],old:2,interv:6,excerpt:11,intern:[9,16,34],successfulli:[22,13],txt:[9,28,10,0,22,1,2,21,11,30,17,5,6,7,8,19],bottom:0,icc:2,fpic:[30,28],condit:19,foo:23,icu:[6,16,34,9],core:[19,2,7,18],plu:6,repositori:[9,2,0,10],post:2,unsaf:8,commit:[9,10],produc:[21,17,2,32],redetect:22,ppc:11,underli:[5,8],justsoftwaresolut:18,down:11,creativ:5,wrap:28,opportun:0,git:[6,10,2,0,9],wai:[28,20,2,21,22,23,5,13,8],support:[9,17,5,8],avail:[9,28,17,0,30,10],reli:8,editor:[1,21,8],gil:6,head:[9,10],build_vari:6,form:32,build_:5,"true":[13,2,20],freenod:9,reset:10,with_expat:14,supp:6,until:2,rerun:11,list_install_compon:30,featur:[9,17,11,20,19,5,16,7,8],semicolon:[11,2],xsltproc_found:26,"abstract":17,exist:8,check:[10,0,30,2,22,5,8],when:[9,28,10,0,18,11,2,4,21,19,23,17,5,24,7,8],test:[27,9,18,22,1,2,21,19,30,5,6,35],node:2,matur:9,longer:2,my_program:28,ignor:[11,9,2,8,30],time:[10,0,11,2,30,23,17,5,16,8],push:9,backward:28,adding_regression_test:6,skip:[1,22,5,8,30],dcmake_is_experiment:5,global:17,decid:8,middl:11,depend:[27,9,16,0,30,11,2,28,21,19,5,35,13,7,8],graph:6,intermedi:5,"1_35":30,"1_34":11,sourc:[9,28,10,0,18,30,1,2,21,19,20,17,5,6,7,8],string:[11,6,17,2,18],imported_link_interface_libraries_releas:28,unfamiliar:10,lrt:28,run_test:2,exact:27,cool:9,hierarchi:[9,30],level:[17,2,0],dboost_all_no_lib:30,gui:[2,0,1,20,11,5],iter:6,enable_featur:17,dir:[11,30,28,2,0],machin:2,htm:10,tss_dll:19,upstream_tag:9,sign:[10,18],boost_test:2,cost:17,port:2,big_test_dl:21,appear:[11,10,2,0],current:[28,18,32,2,21,5,35,13],macinstal:6,ctest_start_with_empty_binary_directori:2,boost:[0,1,2,5,6,7,8,9,10,11,13,17,18,19,20,21,22,23,26,27,28,30,32,35],xml:6,gener:[28,17,0,18,1,2,23,11,20,19,7],modif:23,address:[8,18],along:21,wait:30,box:[11,0],cronjob:2,png_include_dir:8,behav:28,boost_program_opt:7,extra:[17,19,32,2,35,8],tweak:[2,5],modul:[17,18,19,35,6,7,8],named_slot_map:30,prefer:11,ipp:6,visibl:2,instal:[9,28,10,0,30,1,32,2,21,11,23,5,13,7,8],installdir:5,regex:[6,30],sum_avg_port:2,thrd:28,univers:11,todai:9,subvers:2,boost_exports_fil:[9,23,10],scope:28,checkout:[9,2,0,10],dboost_signals_no_lib:[19,30],boost_lib_install_dir:[9,13,23],capit:1,libdepend2:[19,35],peopl:10,enhanc:5,visual:[9,2,0,11,32,20,5],oop:[9,10],effort:[9,28],graphic:[32,8],boost_cmake_drivers_install_dir:[9,23],prepar:0,uniqu:17,function_typ:6,whatev:[9,10,34],xinclud:[11,26],gitlex:6,sourcefil:7,predict:0,multi_threaded_link_flag:[19,7],topic:28,independenli:5,no_featur:19,occur:5,alwai:[11,19,7,30],multipl:[21,9,28,8],write:[5,8],foreach:6,docbook_dtd_dir:11,xsltproc_execut:26,clone:[10,0],valgrind_flag:27,usabl:10,intrus:6,mac:[11,19,32,17,5],mai:[11,17,2,28,0],drastic:17,install_vers:[11,9,13,28,23],cmakebeta3:[9,5],cmakebeta1:5,nullsoft:32,favorit:[1,21,8],mangl:[11,9,23,17,28],inform:[33,28,10,11,36,2,21,23,17,5,13,14,8],"switch":[11,9,20,10,5],combin:[17,8],talk:28,anticip:2,recommendataion:2,circular_buff:6,gitignor:6,still:[17,18],dynam:17,findboost:[13,28],group:[11,30],thank:5,platform:[19,21,32,2,0],window:[9,10,0,1,32,2,11,23,17,5,8],mail:[9,10,5,18],main:[6,28],non:[21,17],halt:2,initi:[11,10,2,5,0],therebi:16,now:[10,0,2,21,5,8],valgrind_found:27,name:[9,28,17,0,18,30,1,32,2,21,11,23,5,35,7,8,19],simpl:[11,21,8],didn:28,revert:[9,10],separ:[9,0,11,2,19,23,8],compil:[9,28,17,0,18,30,1,2,21,11,20,19,24,16,7,8],replac:[28,0],individu:[9,17,2,23,30],continu:[9,2],d_reentrant:30,backport:5,significantli:2,year:13,happen:[16,0],simple_test:21,jackson:13,space:17,profit:20,correct:28,after:[11,21,10,8],argument:[28,30,11,21,19,5,7],org:[9,10,0,2,5,8],"byte":6,care:2,couldn:20,thing:[10,28,2,5,0],place:[2,5],buildspac:[11,9,0],star:10,silver:2,lambda:6,origin:10,enable_debug:[11,9,17],directli:[23,17],onc:[9,0,22,1,2,21,19],arrai:6,with_bzip2:24,yourself:[11,30,5],reopen:2,build_bcp:11,"long":[30,2,0],oppos:19,dbuild_whatev:2,open:20,size:0,given:[28,17,0,19,5,16,7],breviti:28,convent:[28,17,0],conveni:11,knowledg:17,copi:[17,2,0],boost_exports_install_dir:[9,23],specifi:[28,18,22,11,2,19,23,5,8],python_nodebug:19,enclos:2,boost_include_dir:[13,28],mostli:0,than:[9,17,19,23,10,7,8],png:[6,10,8],targest:23,dbuilding_boost_libnam:8,feature_link_flag:[19,9,17,7],posix:6,pre:0,sai:[11,21,8,30],bootstrap:10,reader:2,dash:2,docbook_xsl_dir:11,zlib_librari:4,techniqu:9,note:[9,28,17,0,11,2,23,22,20,5,35,7],take:[10,0,19,2,30,7],cmake_prefix_path:28,noth:10,enable_shar:[11,9,17],begin:17,sure:[21,2,8],normal:19,track:10,compress:[32,10],toplevel:[11,9,28,2,5],beta:5,unit_test_framework:13,later:[2,5],runtim:0,cmakelist:[9,28,10,30,1,21,11,5,6,7,8,19],troi:[11,30,28,2],boost_mpi_python:19,show:[27,28,10,11,2,20,17],atom:17,maint:18,hack:[9,10],slot:30,onli:[28,10,18,22,1,32,2,21,11,23,17,5,6,35,7,8,19],activ:[11,18],written:[9,2,0],jamroot:10,ubla:6,lib_function_test:2,cpack:32,variou:[11,17,0],get:[28,10,0,1,2,11,23,17],not_multi_thread:8,contains2_test:2,ssl:6,cannot:[28,8],requir:[21,28,17,5,8],boost_test_run:[21,6,3,9],sonam:11,cpackconfig:0,where:[9,17,0,18,1,2,21,19,23,5,35,7],wiki:[9,10,5],boost_python:19,darwin:[21,2],nonstandard:[11,28,2,5],detect:[17,0,34,11,36,4,33,22,23,5,24,13,14,16],review:10,git_diff:6,listinfo:[9,5],between:[6,17,9],"import":[28,17,8],across:21,comp:5,screen:2,type_trait:[6,0],gregorian:0,boost_back_inserter_exampl:30,collect2:28,libboost_wav:0,pythonlib:0,come:[10,2],function_test_fail1:2,boostextern:6,mani:[21,30,13,5,8],function_test_fail2:2,color:11,colon:19,rebuild:[9,2,8],invers:2,boost_1_38_0:5,enable_multi_thread:[11,9,17],boostcon:9,thousand:2,bmp:6,graph_parallel:[6,2],workspac:30,ctestcustom:6,i18n:34,spirit:6,those:[10,17,2,35,8],boostcor:[11,6,7,18,19],"case":[19,17,2,7,28],trick:[9,13,28,23],invok:[1,11,2,5],invoc:[18,30,1,19,35,8],findicu:[6,8],lrwxrwxrwx:11,worri:8,blah:23,with_valgrind:27,pthread:[30,28,17],"return":[21,28],sovers:11,develop:[9,28,32,2,22,23,5,13],boost_find_quietli:13,alphabet:5,same:[28,0,11,32,2,19,23,8],binari:[9,0,18,1,32,2,11,19,7,8],html:[6,10,9,0,8],document:[9,28,10,0,36,2,33,5,14,8],finish:[21,2],boost_library_project:[9,18,1,21,11,6,8],driver:23,capabl:[5,8],improv:[17,5],extern:[27,9,28,19,5,6,16,7,8],tss_hook:19,"break":10,searchindex:6,macro:[17,18,11,21,19,35,7,8],multi_index:6,reconfig:9,without:[11,10,23,2,5],imported_soname_releas:28,roughli:0,situat:28,execut:[27,28,17,0,18,30,11,32,2,21,22,20,26,7],tip:27,rest:7,aspect:11,boostconfig:[6,23,17],lib2:[19,7],lib1:[19,7],function_arith_cxx98:2,rebuild_cach:[11,30],littl:2,multi_threaded_compile_flag:19,identif:[16,2],function_arith_porta:2,bcp_imp:30,boost_platform:11,earli:8,cregex:19,around:5,read:2,dart:2,dark:[6,13],earnest:9,dirti:5,disjoint_set:6,boost_modul:[31,6,9],integ:6,server:2,either:[28,18,1,2,22,5,8],"_static":6,output:[27,28,10,0,11,32,2,21,22,5,16,7],manag:9,boost_add_librari:[9,17,18,30,11,19,6,8],intact:20,link_flag:[19,7,8],cmake_install_prefix:[9,28,0,11,23,5,13],basic:[21,6,5,9],definit:[17,8],lunat:9,exit:[11,21,28],boost_dir:[9,28],refer:[9,17,19,6,13,7,8],ration:6,boost_install_exports_fil:10,broken:5,boost_wav:7,src:[28,10,0,18,22,1,2,30,11,23,5,6,16,8,19],central:[23,2],stand:9,routin:[19,8],strip:30,your:[28,10,0,22,1,2,23,21,11,20,5,30,13,8],fast:[30,10],log:2,area:9,aren:[13,0],start:[9,17,0,11,2,21,23,8],interfac:[11,10],lot:[6,2],unam:2,tupl:6,intraboost:7,faster:17,pull:[11,10],nmake:[11,9,2,0],possibl:[9,2],"default":[9,28,10,0,22,11,30,19,23,17,16,7,8],static_compile_flag:19,unusu:28,multi_arrai:6,connect:30,boost_depend:[21,35],creat:[9,28,10,0,18,1,32,2,21,11,17,19,8],scriptabl:32,file:[9,28,10,0,18,22,1,35,2,30,21,11,23,17,19,6,13,7,8],momentarili:2,cmakecach:[11,9,17,0,22],valid:30,compet:5,pathnam:23,you:[27,9,16,10,0,22,1,2,28,21,11,23,17,5,30,35,13,7,8],symbol:[17,8],cmake_minimum_requir:10,feature_link_lib:[19,9,17,7],fatal_error:10,reduc:2,dboost_thread_build_lib:19,directori:[28,10,0,18,30,11,2,23,21,22,20,5,35,7,8],descript:[7,18],gitori:[9,10,0],cpp:[28,17,0,19,21,30,6,7,8],escap:[11,2],unset:5,all:[9,28,10,0,18,30,11,32,2,19,17,5,35,16],forget:[11,2],build_libnam:8,zinc:2,follow:[26,27,28,17,0,18,30,1,32,2,4,21,19,23,35,24,34,13,8],alt:[6,9],smp:2,python_execut:[9,16,22],cmake_c_compil:2,program:[28,17,0,11,32,2,8],std_bind_port:2,introduc:[1,17],icu_include_dir:34,far:17,mpl:[6,0],faq:[6,20,9],mpi:[9,2,33,5,6,16],util:[6,2],failur:5,veri:[10,17,2,0,8],doctool:6,statechart:6,boost_add_execut:[6,7,18,9],list:[9,28,10,18,30,11,2,21,19,17,5,35,7,8],helloworld:28,boost_thread:[19,28,17],lpthread:[28,17],small:6,install_custom:6,function_30:2,past:2,zero:21,pass:[28,0,30,11,2,21,19,5,7,8],what:[20,17,2,0,8],navig:[6,20],abi:0,section:[21,13,2,0,8],abl:[17,0],brief:18,delet:[11,6,10,22],version:[9,28,10,0,11,32,2,23,17,5,6,13,8],program_opt:[6,13,0],full:[17,11,2,34,23,5],hash:6,allocator_test:2,modular:[35,5,18],trunk:2,modifi:[22,23,20,5],valu:[11,2,5,8],search:[27,28,0,6,26,8],boost_test_compil:[21,6,29,9],ahead:10,boost_library_vari:11,pick:[20,10],via:[9,28,10,30,14,2,36,4,21,22,23,5,24,34,33,13,7,8],readili:17,cmake4:[9,5],cmake1:[9,5],cmake0:[9,5,0],cmake3:[9,5],cmake2:[9,5],select:[11,0],distinct:17,two:[28,0,2,21,22,23,5],link_lib:[19,7,8],taken:35,findpng:8,toggl:[11,17],more:[33,28,10,0,11,36,32,2,23,16,30,20,17,5,13,14,8],add_execut:28,tester:2,cmaken:5,flag:[27,9,17,30,19,2,21,22,20,24,7,8],particular:[17,11,19,5,7,8],known:[9,5],cach:[11,2],none:[11,17,2,5],enable_if:6,remain:[5,8],learn:2,deb:5,add_librari:28,prompt:[10,2,0],scan:[30,0],challeng:8,share:[28,17,0,30,11,21,19,23,7,8],minimum:5,explor:[9,2],revis:2,unlucki:2,rather:[19,17,8],anoth:[19,32,17],readelf:11,kitwar:2,css:[6,10],regener:[11,20],variant:[9,17,11,2,19,5,6,7,8],catalog:6,okai:0,associ:[16,8],stabil:11,author:[9,18],caus:[1,19,5],container_device_exampl:30,checkbox:20,help:[30,17,2,28,8],execute_process:2,signal_bas:30,i386:11,through:[19,30,17,5],minmax:6,paramet:[19,6,7,35,18],boost_version_minor:5,sodium:[9,0],brows:0,relev:22,pend:28,projn:5,might:[19,21,7,30],good:11,droppabl:2,no_instal:7,icpc:2,dpython_include_path:22,magic:[20,5],complain:22,build_instal:6,mxa_boost_compon:13,proj2:5,e26008:10,proj1:5,compiletest:6,unlik:[19,7],dbuild_test:2,easili:[32,8],token:6,found:[27,0,34,4,22,5,24,26,8],unicod:[9,16,34],subsystem:2,dcmake_cxx_compil:[11,2],hard:10,procedur:10,expect:[21,5],add_boost_librari:6,todo:[6,2],footnot:[23,17,28],advanc:[11,20,2],intel:[2,5],quick:5,reason:[11,2],base:[9,17,1,2,21,19,5,35,8],ask:[20,5,0],release_compile_flag:[11,20,17],icu_found:34,bash:10,thread:[28,17,18,11,19,23,6,7,8],omit:[11,30,5],perhap:[11,13,8],perman:11,assign:6,install_m:6,intimid:5,number:[17,2],placehold:[19,7],done:[11,10,2,0,21],author1:18,author2:18,dylib:17,stabl:9,miss:[11,0],valgrind_execut:27,differ:[9,10,0,19,32,2,21,23,17,6,7,8],script:[32,2],ton:9,scheme:2,store:[11,21],option:[9,17,0,18,22,11,2,23,21,19,20,35,5,6,16,7,8],build_inspect:11,checklist:9,appropri:[11,28,7,0,8],pars:2,std:28,notfound:11,kind:[19,17,7,0],grep:[11,17,2,28],whenev:8,remot:10,zipfil:[9,0],remov:0,boostdoc:6,jqueri:6,reus:10,dlib_suffix:23,greg_month:0,well:[28,10],packag:[9,0,32,30,5,13,8],dedic:5,built:[28,17,0,18,22,11,21,19,30,5,7,8],lib:[28,10,0,22,1,30,21,11,23,17,5,6,13,8,19],self:[32,0],enable_single_thread:[11,9,17],also:[9,28,10,11,2,23,21,20,17,5,13,8],exampl:[9,28,17,18,30,11,2,21,19,23,5,6,35,7,8],build:[9,28,10,0,18,30,1,35,32,2,23,21,11,20,17,5,6,13,7,8,19],notes_by_vers:[6,9],distribut:[9,28,10,0,11,5,7],previou:[2,8],most:[11,21,28,17],test_exec_monitor:13,lambda_test:2,plan:13,cmakefil:[30,28,0],maco:2,boost_libnam:[21,8],builddir:30,filesystem:[11,6,8,18,30],part:[0,1,32,2,21,34,8],clean:[30,10,5],microsoft:[11,32,17,0],fine:5,find:[28,0,30,1,20,11,23,13,8],copyright:2,solut:[19,2,0],cmake_library_output_directori:23,libboost_sign:[11,30,23,17],boost_test_compile_fail:[21,6,15,9],unus:18,express:2,interprocess:6,with_:16,"_secure_scl":[9,20],updatectestconfigur:2,crc:[6,0],common:[10,8],reattempt:16,set:[26,9,28,10,0,22,11,2,23,4,16,19,20,17,5,24,34,27,13,7,8],see:[0,1,2,5,7,8,9,10,11,13,14,17,19,20,22,23,27,28,30,32,33,36],arg:21,close:2,expert:9,someth:[28,0,11,2,22,5],mutex:19,altern:[9,28,2,5,10],numer:6,libnam:[18,1,21,19,35,8],lowercas:[11,18],distinguish:[17,5],dartconfigur:2,ctest:[21,27,2],both:[18,11,21,23,7,8],compile_fail:21,mem_fun_port:2,enable_whatev:11,"_templat":6,context:17,png_definit:8,whole:2,load:0,simpli:[11,28],python_debug_librari:[9,16,22],point:[28,2,5,0],schedul:2,boostutil:6,except:[19,6,18],header:[0,1,34,23,5,13,8],suppli:[11,8],boostconfigversionagnost:6,empti:[23,10,16,18],build_tool:[11,9],unvers:[19,7],nonexist:28,anthoni:18,imag:32,"_sourc":6,look:[28,0,1,2,11,5,8],histor:11,"while":[10,0,18,19,2,21,20,8],abov:[28,17,0,11,2,23,5],error:[11,30,28,2,5],loop:[21,2],ptr_contain:[6,0],real:[28,8],resophon:[9,2,0],readi:9,itself:[9,17,2,8],costli:17,multi_threaded_link_lib:[19,17],fedora:23,shorter:28,winmangled_libnam:11,flag2:7,flag1:7,conflict:8,optim:17,"_found":16,wherea:2,covari:2,any_test:2,temporari:19,user:[9,17,18,11,32,2,21,23,7,8],stack:11,recent:[11,10],travers:11,task:2,older:13,find_packag:[9,28,36,4,33,34,23,24,13,14],entri:[22,20],grind:2,feasabl:10,dndebug:[11,30],boost_python_modul:[6,12,9],cmaketest:28,cout:28,restructuredtext:9,output_strip_trailing_whitespac:2,any_to_ref_test:2,extended_p_square_quantil:2,bin:[28,0,30,11,2,22,6],format:6,big:28,bit:[23,2],boost_cmake_infrastructure_install_dir:[9,23,28],success:[21,13,16,0],cmakebeta4:[9,5],signal:[28,17,30,1,11,19,6,35],resolv:10,collect:[20,2],error_of:2,docbook_autoconfig:11,function_ref_portabl:2,often:[21,17],dllimport:8,creation:[19,17],some:[28,10,19,2,21,30,17,5,8],per:[9,17,11,2,20,8],makecommand:2,larg:[9,2],proj:28,cgi:[9,5],run:[27,28,17,0,30,1,32,2,23,21,11,20,5,8],step:[10,1,32,2,21,11,5,8],prerequisit:[9,30],orli:5,cmake_is_experiment:5,libdepend1:[19,35],boost_maintain:9,significanli:23,plai:23,nsi:32,proto:6,add_path:30,within:[2,5,8],ensur:7,chang:[9,10,0,2,23,20,17,6,8],next:[23,17,2,0],compile_fail_test:21,shared_compile_flag:[19,7,8],gcc41:[11,30],question:[20,2,5],xtime:19,custom:[9,13,2,23],boost_thread_build_lib:19,includ:[28,17,0,22,11,2,4,19,23,35,5,24,6,13,7,8],suit:35,forward:10,properli:1,reorgan:2,pwd:2,link:[9,28,17,0,30,11,2,4,21,19,24,7,8],build_exampl:[11,9,2,5,18],delta:10,line:[28,17,30,1,2,21,22,5,24],info:0,utc:2,consist:13,build_boost_wseri:11,similar:[11,21,0],innumer:5,zlib_include_dir:4,quickbook:[11,6],feature_compile_flag:[19,9,17,7],curs:11,with_icu:34,cdash:2,no_single_thread:19,incomplet:5,cmake:[0,1,2,4,5,6,7,8,9,10,11,13,14,16,17,18,19,20,21,22,23,24,26,27,28,30,32,33,34,35,36],"_imag":6,nice:23,william:18,sphinxdoc:6,svn:[9,2,5,8,10],algorithm:6,set_properti:28,date_gener:0,holewinski:5,code:[21,9,17,0],"1_40":11,"1_41":13,scratch:[11,23],exenam:7,with_zlib:4,bjam:13,property_map:6,boost_1_41_0_beta1:5,send:9,pulldown:11,evolv:10,tr1:6,sens:[19,17],sensic:17,unzip:11,end:9,wave:[11,6,7,0],mem_fun_cxx98:2,wipe:2,random_test:21,tri:28,tortoisegit:10,std_bind_cxx98:2,button:0,michael:13,maint2:18,"try":[9,28,10,11,21,23,5],pleas:[7,5,0],smaller:17,relink:8,claudio:5,cron:2,download:[9,32,10,0],click:[20,0],append:[19,30,28,8],compat:[6,28],index:[6,2,10],experiment:[2,5],can:[9,28,10,0,18,30,1,32,2,21,11,23,17,5,8],inspect:[6,0],usag:21,b945719:10,let:[2,8],ubuntu:2,lib_suffix:[9,23,5,28],becom:30,sinc:[16,28,8,18],convers:6,python_found:16,technolog:9,typic:[28,17,30,2,22,8],explain:[23,5],apr:2,appli:[11,9,17],python_include_path:[9,16,22],"boolean":[19,17],cmake_instal:0,from:[9,28,10,0,22,1,32,2,21,11,23,17,5,35,8,19],gregor:18,modularize_librari:6,dynamic_runtim:17,gcc40:17,few:[11,9,17,5,8],gcc43:11,usr:[28,0,30,11,2,22,23,8],trail:[2,5],actual:[17,0,18,1,19,7],"static":[28,17,19,21,30,8],account:[19,7],dcmake_c_compil:2,oct:11,rdynam:28,obvious:19,control:[9,28,10,11,23,16],quickstart:[9,0,1,32,2,11,6],tar:32,process:[21,32,28,2,8],lock:17,high:17,tag:[9,2,5,0],tarbal:[9,32,0],msvc:[5,0],serial:6,boost_iostream:30,gcc:[11,30,2,5,0],filepath:2,imported_configur:28,subdirectori:[9,28,10,0,18,30,1,2,21,11,23,8],instead:[11,18],boost_seri:7,xsltproc_flag:[11,26],essenti:10,function_ref_cxx98:2,bind:6,sit:28,correspond:[11,9,17,0,30],element:17,issu:[9,5],multi_thread:[17,7,8],allow:[11,23,8],ener:11,build_sovers:[11,9,23],move:[9,2,5],selftest_lib:6,comma:2,bunch:0,srcdir:[1,8,18],tss:19,ctestconfig:[6,10],python:[9,0,18,11,2,22,5,6,16],auto:19,overal:17,handi:[23,2],mention:[11,2,5],somewher:[7,0],trac:5,anyth:2,edit:[11,22,0],tran:6,mark_as_advanc:10,mode:[11,20,17],pygment:6,subset:2,libboost_date_tim:0,concept_check:[6,0],dgregor:[21,2],python_librari:[9,16,22],our:[21,2,8],boost_additional_vers:13,special:[19,17,5],out:[9,28,10,0,2,21,5,8],variabl:[26,27,28,17,0,34,11,2,4,16,22,23,5,24,13,8],reload:[2,8],rel:[19,23,17,8],recursive_mutex:19,red:0,iostream:[28,11,2,30,23,6,8],insid:[10,28,2],boost_system:[11,30],releas:[9,28,17,11,2,23,20,5,6,8],philip:5,boost_install_cmake_driv:[9,23,28],linktest:6,could:[11,21,17,0],timer:6,counterpart:17,intel64:2,outsid:28,retain:17,single_thread:[17,8],suffix:5,flyweight:6,perfectli:5,mkdir:[2,5,0],system:[28,10,0,30,1,32,2,21,11,17,5,6,8],messag:[2,5,0],"final":[2,0],shell:[11,10,32,2],ctest_cvs_command:2,rst:[6,10,9],exampledir:[1,11,18],cmake_osx_architectur:[11,9],date_tim:[6,0],trackabl:30,thereaft:23,linker:[9,28,17,19,20,7,8],myproject:28,ctest_command:2,have:[9,28,10,0,18,30,1,2,21,11,23,17,5,35,13,8,19],reserv:2,need:[28,17,0,1,32,2,21,11,5,35,13,8,19],turn:[19,2,7],buildinfo:6,pydebug:17,build_configur:6,bzip2_librari:24,icu_librari:34,mib:10,dynamic_bitset:6,builtin:2,which:[9,28,10,0,18,1,32,2,21,11,23,17,5,35,7,8,19],singl:[19,17,8],preliminari:11,who:[17,10,23],discov:28,eight:2,cmake_verbose_makefil:[11,9,20,30],why:9,gather:2,request:7,determin:[11,19],no_modul:28,occasion:9,dllexport:8,text:[1,21,8],verbos:[11,30,28,2],bring:[17,2],ctest_cmake_command:2,locat:[11,23,5,28],boost_cmake_vers:[6,9],should:[28,17,0,18,22,1,2,21,11,23,19,6,7,8],jam:[6,10],suppos:[21,2],local:[28,10,0,30,11,2,22,23,6],hope:19,srcdir2:18,srcdir1:18,big_test:21,enabl:[17,18,11,2,30,23],set_asid:6,dpython_librari:22,contain:[28,17,0,18,30,1,32,2,21,19,23,5,8],thisvers:6,tss_pe:19,view:[11,2],modulo:17,cmake_cxx_compil:[11,9,2],jamfil:6,target_link_librari:28,gmail:18,statu:[10,28,2],dpython_execut:22,dll:[1,19,17,8],state:[19,7,8],selftest_main:6,boostconfigvers:[6,23],kei:11,boost_additional_test_depend:[21,6,35,9],static_tag:19,job:2,entir:22,endl:28,addit:[17,19,10,5,35,7,8],doxygen:[6,16,36,0,9],valgrind:[27,6,16,9],etc:[17,0,18,19,2,30,16,7,8],instanc:[11,30,28,17],ctestnightli:2,comment:2,static_runtim:17,cxx:[30,16,2,28,0],enable_static_runtim:[9,17],arriv:10,commenc:2,respect:[21,8],rpm:5,quit:[10,0],mailman:[9,5],zlib_found:4,compon:[9,28,17,34,23,16,13],build_vers:11,certain:[17,5,0,8],inv:6,presenc:35,togeth:8,lboost_thread:28,present:[1,11,28,19,22],multi:[19,17,7,8],dboost_signals_mt_shared_export:30,exported_target:6,defin:[17,18,19,23,35,7,8],cvscommand:2,customiz:[23,5],site:2,testdir2:18,testdir1:18,archiv:[17,5],fiddl:28,boost_use_static_lib:13,cmake_system_prefix_path:28,terrorist:9,parti:13,boost_unit_test_framework:5,handl:8,stateless_test:2,difficult:10,nightli:[9,2],http:[9,2,5,0,8],hostnam:2,again:[28,2,0,11,20,5],effect:[11,23],sooner:2,php:2,expand:17,off:[28,17,30,11,19,23,13,7,16],bzip2_definit:24,drone:2,command:[27,17,0,22,1,2,30,21,11,20,5,13],choos:[11,2,0],usual:[11,2,8],license_1_0:10,boost_librari:28,tcl:2,variant1:19,variant2:19,static_assert:6,wed:2,makefil:[0,18,30,1,32,2,11,23,6],add:[28,10,18,19,2,21,35,7,8],match:11,agnost:23,howto:5,source2:[19,7],source1:[19,7],know:[1,28],press:11,python3:22,signals2:6,insert:[6,10],d5e055:10,resid:[1,21,2,8],like:[28,0,22,1,2,21,11,23,5,7,19],python_debug:19,corpor:2,boosttest:[6,35],unord:6,necessari:[21,28,5,0],dboost_thread_build_dl:19,page:[1,9,21,0,8],sum_avg_cxx98:2,revers:11,boost_1_35_0:30,linux:[11,17,2,5,28],stat:6,destdir:[23,5],easis:[],"export":[22,23,28,8],home:[9,28,2,30],librari:[0,1,2,4,5,7,8,9,11,13,17,18,19,21,22,23,24,16,28,30,34,35],tmp:[23,10,5,0],incant:23,borland:0,avoid:17,dboost_libname_dyn_link:[21,8],leav:[2,5],doxygen_execut:0,vs9:0,greg_weekdai:0,boost_thread_build_dl:19,simpler:28,about:[9,28,0,1,2,11,23,5,13],rare:19,justin:5,fals:16,disabl:[17,11,2,5,35,16,8],own:[21,30,2,0,8],boost_library_dir:13,png_librari:8,automat:[9,17,0,11,2,19],due:2,guard:5,much:[28,17,5,0],pool:6,"function":[6,32,2],beta1:[9,5],subscrib:5,uninstal:[9,23,28],eas:[23,28],bug:5,ctest_source_directori:2,count:[10,2],dmg:32,whether:[11,23,16,8,28],wish:0,icu_i18n_librari:34,displai:[11,30,2],troubl:28,below:[6,13,7,23],otherwis:[23,0,8],problem:[28,5],ctest_cvs_checkout:2,"int":28,dure:[11,13],extran:17,ing:10,extra_sourc:8,probabl:[11,5],bzip2:[6,16,24,9],hpp:[6,23,28],percent:10,detail:[6,28,0,30],other:[9,28,11,32,2,21,19,5,13,7,8],bool:11,futur:5,branch:[9,10,2,30,5,8],varieti:[19,28,7,32],pythoninterp:0,libboost_thread:[11,28],png_png_include_dir:8,enable_dynamic_runtim:[9,17],cmake_build_typ:11,add_subdirectori:10,sphinx:9,coordin:23,rule:[10,8],libpython3:22,bcp:[6,0,30]},titles:["Quickstart","Adding a Library Project","Testing","boost_test_run","Zlib","Notes by Boost Version","Differences between this release and upstream","boost_add_executable","Adding a Compiled Library to CMake","Boost-CMake 1.41.0.cmake0","Hacking Boost.CMake with Git","Configuring the buildspace","boost_python_module","find_package(Boost)","Expat","boost_test_compile_fail","External Dependencies","Build Variants and Features","boost_library_project","boost_add_library","FAQ","Adding Regression Tests","Python","Customizing the install","BZip2","boost_test_run_fail","Xsltproc","Valgrind","Tricks for Building against Boost with CMake","boost_test_compile","Building individual libraries with cmake","boost_module","Building a Binary Installer","MPI","ICU (International Components for Unicode)","boost_additional_test_dependencies","Doxygen"],modules:{},descrefs:{"":{boost_add_library:[19,0],boost_library_project:[18,0],boost_add_executable:[7,0]}},filenames:["quickstart","add_boost_library","testing","reference/boost_test_run","externals/zlib","notes_by_version","diff","reference/boost_add_executable","add_compiled_library","index","git","build_configuration","reference/boost_python_module","find_package_boost","externals/expat","reference/boost_test_compile_fail","externals/index","build_variants","reference/boost_library_project","reference/boost_add_library","faq","adding_regression_tests","externals/python","install_customization","externals/bzip2","reference/boost_test_run_fail","externals/xsltproc","externals/valgrind","exported_targets","reference/boost_test_compile","individual_libraries","reference/boost_module","build_installer","externals/mpi","externals/icu","reference/boost_additional_test_dependencies","externals/doxygen"]}) |
|   | |||
| 234 | 234 | <div class="section" id="visual-studio"> | |
| 235 | 235 | <span id="index-85"></span><h3>Visual Studio<a class="headerlink" href="#visual-studio" title="Permalink to this headline">¶</a></h3> | |
| 236 | 236 | <p>You will see a solution named <tt class="docutils literal"><span class="pre">RUN_TESTS</span></tt>. Build this to run the | |
| 237 | tests.</p> | ||
| 237 | tests. If you want to run them from the commandline, for some | ||
| 238 | projects you will have to use the <tt class="docutils literal"><span class="pre">-C</span></tt> flag to ctest to specify the | ||
| 239 | ctest configuration type (Debug or Release, typically).</p> | ||
| 238 | 240 | </div> | |
| 239 | 241 | </div> | |
| 240 | 242 | <div class="section" id="targets"> | |
| … | … | ||
| 521 | 521 | </ul> | |
| 522 | 522 | </div> | |
| 523 | 523 | <div class="footer"> | |
| 524 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version 302e56f90fd26da5c5fca8c76bcb46a48e9cbba6, Fri, 20 Nov 2009. | ||
| 524 | © Copyright 2008-2009, Troy D. Straszheim, 2008 Douglas Gregor -- Version bc009eaa45da9c417f10b76f02a9af1718456165, Thu, 26 Nov 2009. | ||
| 525 | 525 | Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2. | |
| 526 | 526 | </div> | |
| 527 | 527 | </body> |
|   | |||
| 1 | .. | ||
| 2 | .. Copyright (C) 2009 Troy Straszheim <troy@resophonic.com> | ||
| 3 | .. | ||
| 4 | .. Distributed under the Boost Software License, Version 1.0. | ||
| 5 | .. See accompanying file LICENSE_1_0.txt or copy at | ||
| 6 | .. http://www.boost.org/LICENSE_1_0.txt | ||
| 7 | .. | ||
| 8 | |||
| 9 | .. index:: find_package(Boost) | ||
| 10 | .. index:: FindBoost.cmake | ||
| 11 | |||
| 12 | .. _find_package_boost: | ||
| 13 | |||
| 14 | find_package(Boost) | ||
| 15 | =================== | ||
| 16 | |||
| 17 | See :ref:`install_customization` for more information about variables | ||
| 18 | used in this section. | ||
| 19 | |||
| 20 | If you plan on using the ``FindBoost.cmake`` packaged with cmake | ||
| 21 | versions 2.8.0 and earlier, (that is, third party packages that build | ||
| 22 | with cmake need to find this boost installation via the cmake command | ||
| 23 | ``find_package(Boost...``), you will need to layout your boost | ||
| 24 | installation in a way that is consistent with the way boost was | ||
| 25 | installed by bjam during the many Dark Years. Michael Jackson of | ||
| 26 | bluequartz.net reports success with the configuration below. He | ||
| 27 | refers to boost.cmake variables :ref:`install_versioned`, | ||
| 28 | :ref:`boost_include_install_dir`, and :ref:`boost_lib_install_dir`:: | ||
| 29 | |||
| 30 | > Set INSTALL_VERSIONED=OFF | ||
| 31 | > set BOOST_INCLUDE_INSTALL_DIR=include/boost-1_41 | ||
| 32 | > set BOOST_LIB_INSTALL_DIR=lib | ||
| 33 | > | ||
| 34 | > and then go. I also set an environment variable BOOST_ROOT to the | ||
| 35 | > CMAKE_INSTALL_PREFIX. | ||
| 36 | > | ||
| 37 | > In my CMake file I have the following; | ||
| 38 | > | ||
| 39 | > # ---------- Find Boost Headers/Libraries ----------------------- | ||
| 40 | > SET (Boost_FIND_REQUIRED TRUE) | ||
| 41 | > SET (Boost_FIND_QUIETLY TRUE) | ||
| 42 | > set (Boost_USE_MULTITHREADED TRUE) | ||
| 43 | > set (Boost_USE_STATIC_LIBS TRUE) | ||
| 44 | > SET (Boost_ADDITIONAL_VERSIONS "1.41" "1.41.0") | ||
| 45 | > | ||
| 46 | > if ( NOT MXA_BOOST_HEADERS_ONLY) | ||
| 47 | > set (MXA_BOOST_COMPONENTS program_options unit_test_framework | ||
| 48 | > test_exec_monitor) | ||
| 49 | > endif() | ||
| 50 | > FIND_PACKAGE(Boost COMPONENTS ${MXA_BOOST_COMPONENTS} ) | ||
| 51 | > INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIRS}) | ||
| 52 | > LINK_DIRECTORIES(${Boost_LIBRARY_DIRS}) | ||
| 53 | > | ||
| 54 | > This successfully works with the FindBoost.cmake that is included with CMake 2.6.4 | ||
| 55 | > | ||
| 56 | |||
| 57 | Currently in development there are other, perhaps easier, ways to | ||
| 58 | detect your boost installations if you aren't dependent on this older | ||
| 59 | FindBoost; see :ref:`exported_targets`. |
|   | |||
| 55 | 55 | build_variants | |
| 56 | 56 | exported_targets | |
| 57 | 57 | install_customization | |
| 58 | find_package_boost | ||
| 58 | 59 | faq | |
| 59 | 60 | externals/index | |
| 60 | 61 | git |
|   | |||
| 11 | 11 | Customizing the install | |
| 12 | 12 | ======================= | |
| 13 | 13 | ||
| 14 | Here you'll find ways to customize your installation. If you're | ||
| 15 | trying to make the install play nice with cmake's ``find_package``, | ||
| 16 | see :ref:`find_package_boost`. | ||
| 17 | |||
| 14 | 18 | .. index:: CMAKE_INSTALL_PREFIX | |
| 15 | 19 | single: installation | |
| 16 | 20 |

