crap/generate-vst

15 lines
235 B
Text
Raw Normal View History

#!/usr/bin/env bash
. common.sh
(cat template-vst.cpp | while read -r; do
case "$REPLY" in
'//#INCLUDE') echo "$pp_include" ;;
# unimplemented
'//#VST_PARAMS') :;;
*) echo -E "$REPLY" ;;
esac
done) > "$out"