blob: ad80e787186ccc5f9d56166066b7db38b3f7075a [file] [edit]
#!/bin/sh
echo "emscripten sdl-config called with $*" >&2
for arg in "$@"; do
case "$arg" in
--cflags|--libs)
echo "-sUSE_SDL"
;;
--version)
echo "1.3.0"
;;
esac
done