From 2891a85338526a3cfa529e3077ea7dd41c4c03fe Mon Sep 17 00:00:00 2001 From: Lephe Date: Sun, 11 Apr 2021 18:48:57 +0200 Subject: [PATCH] cmake: CMAKE_INSTALL_MESSAGE=LAZY --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d480bb8..625af77 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,6 +10,8 @@ option(GINT_USER_VRAM "Put all VRAMs into the user stack (fx-CG 50 only)") option(GINT_STATIC_GRAY "Use static memory instead of malloc for gray buffers (fx-9860G only)") option(GINT_KMALLOC_DEBUG "Enable debug functions for kmalloc") +set(CMAKE_INSTALL_MESSAGE LAZY) + # Generate with commit hash, version name and options git_version_number(SHORT_HASH "GINT_GIT_HASH" TAG_RELATIVE "GINT_GIT_VERSION") configure_file(include/gint/config.h.in include/gint/config.h)