From a1b18e11a79b12af0775042cf92b6c8a86da3175 Mon Sep 17 00:00:00 2001 From: Mahder Gebremedhin Date: Mon, 11 Oct 2021 16:20:13 +0300 Subject: [PATCH] Silence Sundails install messages. - They do not add anything usefull to the printouts. Plus they are printed whether or not the actual target is updated or not. - Set the default install message printing to LAZY, i.e., only print info if something is actually updated. --- OMCompiler/3rdParty | 2 +- OMCompiler/CMakeLists.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/OMCompiler/3rdParty b/OMCompiler/3rdParty index 1fdfa1074dc..c27622e51bc 160000 --- a/OMCompiler/3rdParty +++ b/OMCompiler/3rdParty @@ -1 +1 @@ -Subproject commit 1fdfa1074dcd66ad19f29b9bfc00bab7ecff66b2 +Subproject commit c27622e51bc8c71c8178e2e844e001980b191fc1 diff --git a/OMCompiler/CMakeLists.txt b/OMCompiler/CMakeLists.txt index e8cbd0a85d9..424da360844 100644 --- a/OMCompiler/CMakeLists.txt +++ b/OMCompiler/CMakeLists.txt @@ -91,6 +91,7 @@ set(CMAKE_INSTALL_INCLUDEDIR ${CMAKE_INSTALL_INCLUDEDIR}/omc/) ## Maybe there is a better way to do this but it should suffice for now. set(CMAKE_INSTALL_RPATH "$ORIGIN:$ORIGIN/../${CMAKE_INSTALL_LIBDIR}") +set(CMAKE_INSTALL_MESSAGE LAZY) # Write out a compiler detection header. checkout the file /omc_compiler_detection.h to # get an idea of what it means. We intend to use this for portability reasons in the future.