From 221d3a5e68ab447a5e19ac27b64b50bdb312eaf4 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Wed, 1 Apr 2020 23:27:43 +0200 Subject: [PATCH] [CMake] set message mode --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 70349b1..18da59f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,10 +21,10 @@ INCLUDE(cmake/base.cmake) INCLUDE(cmake/python.cmake) # Print initial message -MESSAGE("${PROJECT_DESCRIPTION}, version ${PROJECT_VERSION}") -MESSAGE("Copyright (C) 2018-2020 LAAS-CNRS / University of Edinburgh") -MESSAGE("All rights reserved.") -MESSAGE("Released under the BSD 3-Clause License.") +MESSAGE(STATUS "${PROJECT_DESCRIPTION}, version ${PROJECT_VERSION}") +MESSAGE(STATUS "Copyright (C) 2018-2020 LAAS-CNRS / University of Edinburgh") +MESSAGE(STATUS "All rights reserved.") +MESSAGE(STATUS "Released under the BSD 3-Clause License.") # Project definition COMPUTE_PROJECT_ARGS(PROJECT_ARGS LANGUAGES CXX)