Created
January 31, 2019 03:06
-
-
Save Arcovv/22c5dc5c4a50c56313abbeb24f326149 to your computer and use it in GitHub Desktop.
Process Gyb Files in Swift Source Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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