https://github.com/kripken/emscripten
Raw File
Tip revision: 5a0c671e327ee67a83d29027019dcc1e4b314d40 authored by Alon Zakai (kripken) on 23 February 2018, 19:16:28 UTC
1.37.35
Tip revision: 5a0c671
emcmake
#!/usr/bin/env python

# This script should work in python 2 *or* 3. It loads emcmake.py, which needs python 2.


import sys
from tools import python_selector

if __name__ == '__main__':
  python_selector.run(__file__)
back to top