refactor: rename binary and artifacts to negative-converter

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Christoph K.
2026-03-15 09:54:47 +01:00
parent 4e4e19e80d
commit 93c19df257
5 changed files with 38 additions and 38 deletions

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# build-all.sh — Kompiliert alle Targets des photo-converter Projekts
# build-all.sh — Kompiliert alle Targets des negative-converter Projekts
#
# Verwendung:
# ./scripts/build-all.sh [--release|--debug] [--clean] [--no-gui] [--no-tests]
@@ -60,7 +60,7 @@ BUILD_PATH="$PROJECT_DIR/$BUILD_DIR"
cd "$PROJECT_DIR"
echo ""
log_info "photo-converter Build"
log_info "negative-converter Build"
log_info " Typ: $BUILD_TYPE"
log_info " Pfad: $BUILD_PATH"
log_info " GUI: $BUILD_GUI"
@@ -114,7 +114,7 @@ log_ok "Build erfolgreich"
# ── Ergebnisse auflisten ──────────────────────────────────────────────────────
echo ""
log_info "Erzeugte Binaries:"
find "$BUILD_PATH" -maxdepth 3 -type f \( -name "photo-converter" -o -name "test_*" \) \
find "$BUILD_PATH" -maxdepth 3 -type f \( -name "negative-converter" -o -name "test_*" \) \
| sort \
| while read -r f; do
size=$(du -sh "$f" 2>/dev/null | cut -f1)
@@ -133,4 +133,4 @@ if [[ "$BUILD_TESTS" == "ON" ]]; then
fi
echo ""
log_ok "Fertig. Starten mit: $BUILD_PATH/photo-converter --batch --config config.ini"
log_ok "Fertig. Starten mit: $BUILD_PATH/negative-converter --batch --config config.ini"