aboutsummaryrefslogtreecommitdiff
path: root/system/bin/sdl-config
blob: 51dff31ddcd88b3fcae746b9c52358ffe227d89e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python2

import sys

print >> sys.stderr, 'emscripten sdl-config called with', sys.argv

args = sys.argv[1:]

if args[0] == '--cflags':
  print ''
elif '--version' in args:
  print '1.3.0'