mirror of https://github.com/mgba-emu/mgba.git
All: Add QUIET parameter to silence CMake
This commit is contained in:
parent
c09f376306
commit
b0a1a2e2b7
1
CHANGES
1
CHANGES
|
@ -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:
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue