Build: Set install messages policy to lazy
This allows to avoid printing Up-to-date messages when
installing files at the end of the SPE build, hence
reduces flooding of the build output keeping only the
Installing relevant messages, especially on incremental
rebuilds.
Signed-off-by: Antonio de Angelis <antonio.deangelis@arm.com>
Change-Id: Iec793795dfc9d5dffab73e451c1ba49683989790
diff --git a/cmake/install.cmake b/cmake/install.cmake
index 4cf1e0e..3573f4e 100644
--- a/cmake/install.cmake
+++ b/cmake/install.cmake
@@ -7,6 +7,9 @@
#
#-------------------------------------------------------------------------------
+# Skip "up-to-date" prints to avoid flooding the build output. Just print "installing"
+set(CMAKE_INSTALL_MESSAGE LAZY)
+
install(DIRECTORY ${CMAKE_BINARY_DIR}/bin/
DESTINATION bin
)