m323/Sources/Aufgabe6/Aufgabe6.xcodeproj/rules_xcodeproj/bazel/libtool
cediackermann b1968074b6
build: generate per-package and aggregate Xcode projects
Add rules_xcodeproj targets to each package BUILD plus a root m323
project, with extra_files filegroups so the full source tree shows in
Xcode. Ignore Scala/Metals build dirs.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-29 14:00:40 +02:00

21 lines
284 B
Bash
Executable file

#!/bin/bash
set -euo pipefail
original_args=("$@")
while test $# -gt 0
do
case $1 in
-V)
# Xcode 15+ needs to know the version of libtool
exec libtool "${original_args[@]}"
;;
*_dependency_info.dat)
printf "\0 \0" > "$1"
break
;;
esac
shift
done