macos: Renamed application from azahar to Azahar

This commit is contained in:
OpenSauce04 2025-03-15 13:01:44 +00:00
parent 7ef4012a9a
commit b019ac275c
2 changed files with 3 additions and 2 deletions

View File

@ -11,7 +11,7 @@ BASE_ARTIFACT_ARCH="${BASE_ARTIFACT##*-}"
mv $BASE_ARTIFACT $BUNDLE_DIR mv $BASE_ARTIFACT $BUNDLE_DIR
# Executable binary paths that need to be combined. # Executable binary paths that need to be combined.
BIN_PATHS=(azahar-room azahar.app/Contents/MacOS/azahar) BIN_PATHS=(azahar-room Azahar.app/Contents/MacOS/azahar)
# Dylib paths that need to be combined. # Dylib paths that need to be combined.
IFS=$'\n' IFS=$'\n'
@ -37,7 +37,7 @@ for OTHER_ARTIFACT in "${ARTIFACTS_LIST[@]:1}"; do
done done
# Re-sign executables and bundles after combining. # Re-sign executables and bundles after combining.
APP_PATHS=(azahar-room azahar.app) APP_PATHS=(azahar-room Azahar.app)
for APP_PATH in "${APP_PATHS[@]}"; do for APP_PATH in "${APP_PATHS[@]}"; do
codesign --deep -fs - $BUNDLE_DIR/$APP_PATH codesign --deep -fs - $BUNDLE_DIR/$APP_PATH
done done

View File

@ -10,6 +10,7 @@ cmake .. -GNinja \
-DUSE_DISCORD_PRESENCE=ON -DUSE_DISCORD_PRESENCE=ON
ninja ninja
ninja bundle ninja bundle
mv ./bundle/azahar.app ./bundle/Azahar.app # TODO: Can this be done in CMake?
ccache -s -v ccache -s -v