CMake: don't change cmake logging on release builds
- There is no real need to reduce the logging on release builds, it's just confusing that all the cmake-time output changes in a non-meaningful way.
This commit is contained in:
parent
94c244eef8
commit
82c51dec37
@ -79,10 +79,8 @@ function( calamares_add_branding NAME )
|
|||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
message( "-- ${BoldYellow}Found ${CALAMARES_APPLICATION_NAME} branding component: ${BoldRed}${NAME}${ColorReset}" )
|
message( "-- ${BoldYellow}Found ${CALAMARES_APPLICATION_NAME} branding component: ${BoldRed}${NAME}${ColorReset}" )
|
||||||
if( NOT CMAKE_BUILD_TYPE STREQUAL "Release" )
|
message( " ${Green}TYPE:${ColorReset} branding component" )
|
||||||
message( " ${Green}TYPE:${ColorReset} branding component" )
|
message( " ${Green}BRANDING_COMPONENT_DESTINATION:${ColorReset} ${BRANDING_COMPONENT_DESTINATION}" )
|
||||||
message( " ${Green}BRANDING_COMPONENT_DESTINATION:${ColorReset} ${BRANDING_COMPONENT_DESTINATION}" )
|
|
||||||
endif()
|
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
# Usage calamares_add_branding_translations( <name> [DIRECTORY <dir>])
|
# Usage calamares_add_branding_translations( <name> [DIRECTORY <dir>])
|
||||||
|
@ -99,19 +99,17 @@ function( calamares_add_module_subdirectory )
|
|||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
message( "-- ${BoldYellow}Found ${CALAMARES_APPLICATION_NAME} module: ${BoldRed}${SUBDIRECTORY}${ColorReset}" )
|
message( "-- ${BoldYellow}Found ${CALAMARES_APPLICATION_NAME} module: ${BoldRed}${SUBDIRECTORY}${ColorReset}" )
|
||||||
if( NOT CMAKE_BUILD_TYPE STREQUAL "Release" )
|
message( " ${Green}TYPE:${ColorReset} jobmodule" )
|
||||||
message( " ${Green}TYPE:${ColorReset} jobmodule" )
|
message( " ${Green}MODULE_DESTINATION:${ColorReset} ${MODULE_DESTINATION}" )
|
||||||
message( " ${Green}MODULE_DESTINATION:${ColorReset} ${MODULE_DESTINATION}" )
|
if( MODULE_CONFIG_FILES )
|
||||||
if( MODULE_CONFIG_FILES )
|
if ( INSTALL_CONFIG )
|
||||||
if ( INSTALL_CONFIG )
|
set( _destination "${MODULE_DATA_DESTINATION}" )
|
||||||
set( _destination "${MODULE_DATA_DESTINATION}" )
|
else()
|
||||||
else()
|
set( _destination "[Build directory only]" )
|
||||||
set( _destination "[Build directory only]" )
|
|
||||||
endif()
|
|
||||||
message( " ${Green}CONFIGURATION_FILES:${ColorReset} ${MODULE_CONFIG_FILES} => ${_destination}" )
|
|
||||||
endif()
|
endif()
|
||||||
message( "" )
|
message( " ${Green}CONFIGURATION_FILES:${ColorReset} ${MODULE_CONFIG_FILES} => ${_destination}" )
|
||||||
endif()
|
endif()
|
||||||
|
message( "" )
|
||||||
# We copy over the lang directory, if any
|
# We copy over the lang directory, if any
|
||||||
if( IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}/lang" )
|
if( IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}/lang" )
|
||||||
install_calamares_gettext_translations(
|
install_calamares_gettext_translations(
|
||||||
|
@ -62,28 +62,27 @@ function( calamares_add_plugin )
|
|||||||
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" )
|
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" )
|
||||||
|
|
||||||
message( "-- ${BoldYellow}Found ${CALAMARES_APPLICATION_NAME} module: ${BoldRed}${PLUGIN_NAME}${ColorReset}" )
|
message( "-- ${BoldYellow}Found ${CALAMARES_APPLICATION_NAME} module: ${BoldRed}${PLUGIN_NAME}${ColorReset}" )
|
||||||
if( NOT CMAKE_BUILD_TYPE STREQUAL "Release" )
|
message( " ${Green}TYPE:${ColorReset} ${PLUGIN_TYPE}" )
|
||||||
message( " ${Green}TYPE:${ColorReset} ${PLUGIN_TYPE}" )
|
message( " ${Green}LINK_LIBRARIES:${ColorReset} ${PLUGIN_LINK_LIBRARIES}" )
|
||||||
message( " ${Green}LINK_LIBRARIES:${ColorReset} ${PLUGIN_LINK_LIBRARIES}" )
|
message( " ${Green}LINK_PRIVATE_LIBRARIES:${ColorReset} ${PLUGIN_LINK_PRIVATE_LIBRARIES}" )
|
||||||
message( " ${Green}LINK_PRIVATE_LIBRARIES:${ColorReset} ${PLUGIN_LINK_PRIVATE_LIBRARIES}" )
|
message( " ${Green}PLUGIN_DESTINATION:${ColorReset} ${PLUGIN_DESTINATION}" )
|
||||||
message( " ${Green}PLUGIN_DESTINATION:${ColorReset} ${PLUGIN_DESTINATION}" )
|
if( PLUGIN_CONFIG_FILES )
|
||||||
if( PLUGIN_CONFIG_FILES )
|
set( _destination "(unknown)" )
|
||||||
set( _destination "(unknown)" )
|
if ( INSTALL_CONFIG AND NOT PLUGIN_NO_INSTALL )
|
||||||
if ( INSTALL_CONFIG AND NOT PLUGIN_NO_INSTALL )
|
set( _destination "${PLUGIN_DATA_DESTINATION}" )
|
||||||
set( _destination "${PLUGIN_DATA_DESTINATION}" )
|
elseif( NOT PLUGIN_NO_INSTALL )
|
||||||
elseif( NOT PLUGIN_NO_INSTALL )
|
# Not INSTALL_CONFIG
|
||||||
# Not INSTALL_CONFIG
|
set( _destination "[Build directory only]" )
|
||||||
set( _destination "[Build directory only]" )
|
else()
|
||||||
else()
|
set( _destination "[Skipping installation]" )
|
||||||
set( _destination "[Skipping installation]" )
|
|
||||||
endif()
|
|
||||||
message( " ${Green}CONFIGURATION_FILES:${ColorReset} ${PLUGIN_CONFIG_FILES} => ${_destination}" )
|
|
||||||
endif()
|
endif()
|
||||||
if( PLUGIN_RESOURCES )
|
message( " ${Green}CONFIGURATION_FILES:${ColorReset} ${PLUGIN_CONFIG_FILES} => ${_destination}" )
|
||||||
message( " ${Green}RESOURCES:${ColorReset} ${PLUGIN_RESOURCES}" )
|
|
||||||
endif()
|
|
||||||
message( "" )
|
|
||||||
endif()
|
endif()
|
||||||
|
if( PLUGIN_RESOURCES )
|
||||||
|
message( " ${Green}RESOURCES:${ColorReset} ${PLUGIN_RESOURCES}" )
|
||||||
|
endif()
|
||||||
|
message( "" )
|
||||||
|
|
||||||
# create target name once for convenience
|
# create target name once for convenience
|
||||||
set( target "calamares_${PLUGIN_TYPE}_${PLUGIN_NAME}" )
|
set( target "calamares_${PLUGIN_TYPE}_${PLUGIN_NAME}" )
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user