All: Add QUIET parameter to silence CMake

This commit is contained in:
Jeffrey Pfau 2016-04-28 22:45:34 -07:00
parent c09f376306
commit b0a1a2e2b7
2 changed files with 28 additions and 25 deletions

View File

@ -33,6 +33,7 @@ Misc:
- All: Allow use of external minizip library
- Qt: Remove some C99isms from C++ code
- Windows: Add native VDir support
- All: Add QUIET parameter to silence CMake
0.4.0: (2016-02-02)
Features:

View File

@ -722,6 +722,7 @@ else()
set(SUMMARY_ZIP OFF)
endif()
if(NOT QUIET)
message(STATUS "Platforms:")
message(STATUS " Game Boy Advance: ${M_CORE_GBA}")
message(STATUS " Game Boy: ${M_CORE_GB}")
@ -748,3 +749,4 @@ endif()
message(STATUS "Libraries:")
message(STATUS " Static: ${BUILD_STATIC}")
message(STATUS " Shared: ${BUILD_SHARED}")
endif()