| | 1 | = CMake-Based Build System = |
| | 2 | |
| | 3 | We are developing an alternative build system for Boost based on [http://www.cmake.org CMake], a cross-platform, open-source make system. At this point, the CMake-based build system is still a work in progress, and it is unknown whether it will become a fully-supported build system within Boost. These pages document the CMake-based build system for Boost, and are focused primarily at Boost library developers. In the future, we will provide an alternative version of Boost's [http://www.boost.org/more/getting_started/index.html Getting Started] guide for CMake users. |
| | 4 | |
| | 5 | == Task-Oriented Documentation == |
| | 6 | |
| | 7 | * [wiki:CMakeConfigAndBuild Configuring and Building Boost with CMake] |
| | 8 | |
| | 9 | * [wiki:CMakeTesting Testing Boost with CMake] |
| | 10 | |
| | 11 | * [wiki:CMakeAddingALibrary Adding a Boost Library with CMake] |
| | 12 | |
| | 13 | * [wiki:CMakeAddingCompiledLibrary Adding a Compiled Library with CMake] |
| | 14 | |
| | 15 | * [wiki:CMakeAddingRegressionTests Adding Regression Tests with CMake] |
| | 16 | |
| | 17 | == Reference Documentation == |
| | 18 | |
| | 19 | * Project macros |
| | 20 | * [wiki:CMakeLibraryProject boost_library_project] - Designate a new Boost library project |
| | 21 | |
| | 22 | * Building library binaries |
| | 23 | * [wiki:CMakeAddLibrary boost_add_library] - Add a compiled Boost library |
| | 24 | |
| | 25 | * Regression testing |
| | 26 | * [wiki:CMakeTestRun boost_test_run] - Compile and execute a test |
| | 27 | |
| | 28 | * [wiki:CMakeTestRunFail boost_test_run_fail] - Compile and execute a test (which is expected to fail) |
| | 29 | |
| | 30 | * [wiki:CMakeTestCompile boost_test_compile] - Compile a test |
| | 31 | |
| | 32 | * [wiki:CMakeTestCompileFail boost_test_compile_fail] - Compile a test (which should fail to compile) |
| | 33 | |
| | 34 | * [http://www.cmake.org/HTML/Documentation.html CMake Macro Reference] |
| | 35 | |
| | 36 | |
| | 37 | |