mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-22 06:22:58 +02:00
Add targets for packaging DMG and InnoSetup
Fixes configure.sh Fixes Windows code signing Fixes an issue with conan cache on windows Fixes build manual script Fixes build manual Remove unused props Use long options Yet another manual fix Fixes iss
This commit is contained in:
committed by
Dmitry Vedenko
parent
d21ee922e1
commit
6da25e1646
16
scripts/build/macOS/DMGSign.cmake
Normal file
16
scripts/build/macOS/DMGSign.cmake
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
set( APPLE_CODESIGN_IDENTITY ${CPACK_APPLE_CODESIGN_IDENTITY} )
|
||||
set( APPLE_NOTARIZATION_USER_NAME ${CPACK_APPLE_NOTARIZATION_USER_NAME} )
|
||||
set( APPLE_NOTARIZATION_PASSWORD ${CPACK_APPLE_NOTARIZATION_PASSWORD} )
|
||||
set( PERFORM_NOTARIZATION ${CPACK_PERFORM_NOTARIZATION} )
|
||||
set( APP_IDENTIFIER "org.audacityteam.audacity" )
|
||||
|
||||
foreach( file ${CPACK_PACKAGE_FILES} )
|
||||
set( DMG_LOCATION ${CPACK_PACKAGE_FILES} )
|
||||
|
||||
include( "${CPACK_APPLE_SIGN_SCRIPTS}/SignMacos.cmake" )
|
||||
|
||||
if( PERFORM_NOTARIZATION )
|
||||
include( "${CPACK_APPLE_SIGN_SCRIPTS}/NotarizeMacos.cmake" )
|
||||
endif()
|
||||
endforeach()
|
Reference in New Issue
Block a user