Commit 991ed1ce3aa3f61f261ca109e1c00a9421c245f2
- Diff rendering mode:
- inline
- side by side
CMakeLists.txt
(6 / 3)
|   | |||
| 33 | 33 | list(APPEND CMAKE_MODULE_PATH ${Boost_SOURCE_DIR}/tools/build/CMake) | |
| 34 | 34 | include(BoostUtils) | |
| 35 | 35 | ||
| 36 | message(STATUS "") | ||
| 37 | colormsg(_HIBLUE_ "Boost.CMake starting") | ||
| 38 | |||
| 36 | 39 | ########################################################################## | |
| 37 | 40 | # Version information # | |
| 38 | 41 | ########################################################################## | |
| … | … | ||
| 228 | 228 | ||
| 229 | 229 | endif() | |
| 230 | 230 | ||
| 231 | boost_report_pretty("Install prefix:" CMAKE_INSTALL_PREFIX) | ||
| 232 | boost_report_pretty("Install include dir:" BOOST_INCLUDE_INSTALL_DIR) | ||
| 233 | boost_report_pretty("Install lib dir:" BOOST_LIB_INSTALL_DIR) | ||
| 231 | boost_report_pretty("Install prefix" CMAKE_INSTALL_PREFIX) | ||
| 232 | boost_report_pretty("Install include dir" BOOST_INCLUDE_INSTALL_DIR) | ||
| 233 | boost_report_pretty("Install lib dir" BOOST_LIB_INSTALL_DIR) | ||
| 234 | 234 | ||
| 235 | 235 | include(BoostExternals) | |
| 236 | 236 |
libs/CMakeLists.txt
(2 / 2)
|   | |||
| 52 | 52 | # include only directories of projects in BUILD_PROJECTS | |
| 53 | 53 | # | |
| 54 | 54 | message(STATUS "") | |
| 55 | colormsg(_HIBLUE_ "Reading boost project directories...") | ||
| 55 | colormsg(_HIBLUE_ "Reading boost project directories (per BUILD_PROJECTS)") | ||
| 56 | 56 | message(STATUS "") | |
| 57 | 57 | set(BOOST_ALL_COMPONENTS "") | |
| 58 | 58 | ||
| … | … | ||
| 79 | 79 | ||
| 80 | 80 | if(BUILD_TESTS AND NOT BUILD_TESTS STREQUAL "NONE") | |
| 81 | 81 | message(STATUS "") | |
| 82 | colormsg(_HIBLUE_ "Reading boost project TEST directories...") | ||
| 82 | colormsg(_HIBLUE_ "Traversing project test directories (per BUILD_TESTS)") | ||
| 83 | 83 | message(STATUS "") | |
| 84 | 84 | else() | |
| 85 | 85 | message(STATUS "") |
|   | |||
| 42 | 42 | ZLib | |
| 43 | 43 | ) | |
| 44 | 44 | message(STATUS "") | |
| 45 | colormsg(HICYAN "${external}:") | ||
| 46 | 45 | string(TOUPPER "${external}" EXTERNAL) | |
| 47 | 46 | option(WITH_${EXTERNAL} "Attempt to find and configure ${external}" ON) | |
| 48 | 47 | if(WITH_${EXTERNAL}) | |
| 48 | colormsg(HICYAN "${external}:") | ||
| 49 | 49 | include(${CMAKE_SOURCE_DIR}/tools/build/CMake/externals/${external}.cmake) | |
| 50 | 50 | else() | |
| 51 | 51 | set(${EXTERNAL}_FOUND FALSE CACHE BOOL "${external} found" FORCE) | |
| 52 | colormsg(RED "Disabled since WITH_${EXTERNAL}=OFF") | ||
| 52 | colormsg(HIRED "${external}:" RED "disabled, since WITH_${EXTERNAL}=OFF") | ||
| 53 | 53 | endif() | |
| 54 | 54 | endforeach() | |
| 55 | 55 | message(STATUS "") |
tools/build/CMake/BoostUtils.cmake
(10 / 10)
|   | |||
| 269 | 269 | message(STATUS ${str}) | |
| 270 | 270 | endfunction() | |
| 271 | 271 | ||
| 272 | colormsg("Colors:" | ||
| 273 | WHITE "white" GRAY "gray" GREEN "green" | ||
| 274 | RED "red" YELLOW "yellow" BLUE "blue" MAG "mag" CYAN "cyan" | ||
| 275 | _WHITE_ "white" _GRAY_ "gray" _GREEN_ "green" | ||
| 276 | _RED_ "red" _YELLOW_ "yellow" _BLUE_ "blue" _MAG_ "mag" _CYAN_ "cyan" | ||
| 277 | _HIWHITE_ "white" _HIGRAY_ "gray" _HIGREEN_ "green" | ||
| 278 | _HIRED_ "red" _HIYELLOW_ "yellow" _HIBLUE_ "blue" _HIMAG_ "mag" _HICYAN_ "cyan" | ||
| 279 | HIWHITE "white" HIGRAY "gray" HIGREEN "green" | ||
| 280 | HIRED "red" HIYELLOW "yellow" HIBLUE "blue" HIMAG "mag" HICYAN "cyan" | ||
| 281 | "right?") | ||
| 272 | # colormsg("Colors:" | ||
| 273 | # WHITE "white" GRAY "gray" GREEN "green" | ||
| 274 | # RED "red" YELLOW "yellow" BLUE "blue" MAG "mag" CYAN "cyan" | ||
| 275 | # _WHITE_ "white" _GRAY_ "gray" _GREEN_ "green" | ||
| 276 | # _RED_ "red" _YELLOW_ "yellow" _BLUE_ "blue" _MAG_ "mag" _CYAN_ "cyan" | ||
| 277 | # _HIWHITE_ "white" _HIGRAY_ "gray" _HIGREEN_ "green" | ||
| 278 | # _HIRED_ "red" _HIYELLOW_ "yellow" _HIBLUE_ "blue" _HIMAG_ "mag" _HICYAN_ "cyan" | ||
| 279 | # HIWHITE "white" HIGRAY "gray" HIGREEN "green" | ||
| 280 | # HIRED "red" HIYELLOW "yellow" HIBLUE "blue" HIMAG "mag" HICYAN "cyan" | ||
| 281 | # "right?") | ||
| 282 | 282 | ||
| 283 | 283 | # | |
| 284 | 284 | # pretty-prints the value of a variable so that the |

