From 3a3ec8136d95969ffb88011401e4ff5ec88180dc Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 8 Oct 2018 17:01:05 +0300 Subject: [PATCH] Use message(STATUS...) --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1512946..39e732a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,15 +25,15 @@ if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR) # requires CMake 3.11 so we just carry it around include(cmake/FetchContent.cmake) - message("-- Fetching pdimov/mincmake") + message(STATUS "Fetching pdimov/mincmake") FetchContent_Populate(mincmake QUIET GIT_REPOSITORY https://github.com/pdimov/mincmake GIT_TAG master GIT_SHALLOW 1) include(${mincmake_SOURCE_DIR}/cmake/boost_test.cmake) - message("-- Fetching boostorg/config") + message(STATUS "Fetching boostorg/config") FetchContent_Populate(boost_config QUIET GIT_REPOSITORY https://github.com/boostorg/config GIT_TAG develop GIT_SHALLOW 1) add_subdirectory(${boost_config_SOURCE_DIR} ${boost_config_BINARY_DIR}) - message("-- Fetching boostorg/core") + message(STATUS "Fetching boostorg/core") FetchContent_Populate(boost_core QUIET GIT_REPOSITORY https://github.com/boostorg/core GIT_TAG develop GIT_SHALLOW 1) add_subdirectory(${boost_core_SOURCE_DIR} ${boost_core_BINARY_DIR})