Skip to content

Commit

Permalink
Lessen [linux|mac]deployqt verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed May 15, 2024
1 parent bad79a8 commit 4b2dedf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cmake/apple/CPackDMG.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set(APP "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PROJECT_NAME_UCASE}.app")

# 0 = no output, 1 = error/warning, 2 = normal, 3 = debug
set(VERBOSITY 2)
set(VERBOSITY 1)
# Set to "STDOUT" to show all verbose commands
set(COMMAND_ECHO NONE)

Expand All @@ -18,7 +18,7 @@ if(NOT CPACK_STRIP_FILES_ORIG)
endif()

if(CPACK_DEBUG)
set(VERBOSITY 3)
set(VERBOSITY 2)
set(COMMAND_ECHO STDOUT)
endif()

Expand Down
4 changes: 2 additions & 2 deletions cmake/linux/CPackAppImage.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set(APP "${CPACK_TEMPORARY_INSTALL_DIRECTORY}/${CPACK_PROJECT_NAME_UCASE}.AppDir
set(APPIMAGE_FILE "${CPACK_BINARY_DIR}/${CPACK_PACKAGE_FILE_NAME}.AppImage")

# 0 = no output, 1 = error/warning, 2 = normal, 3 = debug
set(VERBOSITY 2)
set(VERBOSITY 1)
# Set to "STDOUT" to show all verbose commands
set(COMMAND_ECHO NONE)

Expand All @@ -15,7 +15,7 @@ if(NOT CPACK_STRIP_FILES)
endif()

if(CPACK_DEBUG)
set(VERBOSITY 3)
set(VERBOSITY 2)
set(COMMAND_ECHO STDOUT)
endif()

Expand Down

0 comments on commit 4b2dedf

Please sign in to comment.