1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-27 08:17:38 +02:00

Change Audacity to Tenacity in Innosetup files

Signed-off-by: Sebastian Rueth <sebastian.rueth@protonmail.com>
This commit is contained in:
Sebastian Rueth
2021-07-21 15:16:23 +02:00
committed by Sol Fisher Romanoff
parent 0d735e3b9f
commit bbf9101a1b
7 changed files with 45 additions and 45 deletions

View File

@@ -1,4 +1,4 @@
# This CMake script is invoked to build the InnoSetup installer for Audacity
# This CMake script is invoked to build the InnoSetup installer for Tenacity
# Requiered parameters:
# BUILD_DIR - should be set to CMAKE_BINARY_DIR by the caller
# SOURCE_DIR - should be set to CMAKE_SOURCE_DIR by teh caller
@@ -42,7 +42,7 @@ endif()
# Prepare the output directory
file(COPY "${SOURCE_DIR}/win/Inno_Setup_Wizard/" DESTINATION "${OUTPUT_DIR}")
configure_file("${OUTPUT_DIR}/audacity.iss.in" "${OUTPUT_DIR}/audacity.iss")
configure_file("${OUTPUT_DIR}/tenacity.iss.in" "${OUTPUT_DIR}/tenacity.iss")
# Copy additional files
@@ -51,7 +51,7 @@ file(COPY "${SOURCE_DIR}/presets" DESTINATION "${OUTPUT_DIR}/Additional")
file(COPY
"${SOURCE_DIR}/LICENSE.txt"
"${SOURCE_DIR}/README.md"
"${SOURCE_DIR}/win/audacity.ico"
"${SOURCE_DIR}/win/tenacity.ico"
DESTINATION
"${OUTPUT_DIR}/Additional"
)
@@ -69,7 +69,7 @@ execute_process(
execute_process(
COMMAND
${INNO_SETUP_COMPILER} /Sbyparam=$p "audacity.iss"
${INNO_SETUP_COMPILER} /Sbyparam=$p "tenacity.iss"
WORKING_DIRECTORY
${OUTPUT_DIR}
)