crap/generate-vst
2013-11-17 22:38:22 -08:00

15 lines
235 B
Bash
Executable File

#!/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"