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>
21 lines
284 B
Bash
Executable file
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
|