1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 17:11:12 +02:00

Attempt to fix macOS build issues

Add `umount` command behavior
Modify to retry 12 times over the course of 240 seconds total
Change `scripts\build\macOS\DMGSetup.scpt` to close DMG when finished.
Improve system detection for setting project name.

Signed-off-by: Emily Mabrey <emabrey@tenacityaudio.org>
This commit is contained in:
Emily Mabrey
2021-08-28 09:21:00 -04:00
parent c3db577e93
commit 7450432f9a
4 changed files with 17 additions and 12 deletions

View File

@@ -40,10 +40,10 @@ cmake_policy( SET CMP0075 NEW )
set( AUDACITY_BUILD_LEVEL 0 )
# Define Tenacity's build output name
if( CMAKE_SYSTEM_NAME MATCHES "Darwin|Windows" )
set( AUDACITY_NAME "Tenacity" )
if( APPLE OR WIN32 )
set( AUDACITY_NAME "Tenacity")
else()
set( AUDACITY_NAME "tenacity" )
set( AUDACITY_NAME "tenacity")
endif()
if(NOT GIT_FOUND)