Skip to content

Commit

Permalink
Attempt to fix CPACK_BRANDED_OUTPUT macOS, Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed Mar 2, 2025
1 parent 910b1a4 commit aac0370
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/apple/MacDeployQt.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ file(COPY "${CPACK_CURRENT_SOURCE_DIR}/${lmms}.icns" DESTINATION "${APP}/Content
# Overwrite any branded files
if(CPACK_BRANDED_OUTPUT)
file(GLOB branded_items "${CPACK_BRANDED_OUTPUT}/*")
foreach(item "${branded_items}")
foreach(item IN LISTS branded_items)
file(COPY "${item}" DESTINATION "${APP}")
endforeach()
endif()
Expand Down
2 changes: 1 addition & 1 deletion cmake/linux/LinuxDeploy.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ file(COPY "${APP}/usr/share/icons/hicolor/256x256/apps/${lmms}.png" DESTINATION
# Overwrite any branded files
if(CPACK_BRANDED_OUTPUT)
file(GLOB branded_items "${CPACK_BRANDED_OUTPUT}/*")
foreach(item "${branded_items}")
foreach(item IN LISTS branded_items)
file(COPY "${item}" DESTINATION "${APP}")
endforeach()
endif()
Expand Down

0 comments on commit aac0370

Please sign in to comment.