Skip to content

Instantly share code, notes, and snippets.

@Arcovv
Created January 31, 2019 03:06
Show Gist options
  • Save Arcovv/22c5dc5c4a50c56313abbeb24f326149 to your computer and use it in GitHub Desktop.
Save Arcovv/22c5dc5c4a50c56313abbeb24f326149 to your computer and use it in GitHub Desktop.
Process Gyb Files in Swift Source Code
#!/bin/bash
for f in `ls *.gyb`
do
echo "Processing $f"
name=${f%.gyb}
../../../utils/gyb -D CMAKE_SIZEOF_VOID_P=8 -o $name $f --line-directive ""
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment