1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-15 15:49:36 +02:00

Set AUDACITY_BUILD_LEVEL to Release when building from release branch

This commit is contained in:
Dmitry Vedenko 2021-06-24 20:13:02 +03:00 committed by Paul Licameli
parent a8afea5a75
commit 70bb6a63c3
2 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,7 @@ endif ()
# still link to the alpha manual online.
# Set this value to 0 for alpha, 1 for beta, 2 for release builds
set( AUDACITY_BUILD_LEVEL 0 )
set( AUDACITY_BUILD_LEVEL 0 CACHE STRING "0 for alpha, 1 for beta, 2 for release builds" )
# The Audacity version
# Increment as appropriate after release of a new version, and set back

View File

@ -58,6 +58,7 @@ fi
if [[ ${GIT_BRANCH} == release* ]]; then
cmake_args+=(
-D audacity_package_manual=yes
-D AUDACITY_BUILD_LEVEL=2
)
fi