diff options
-rwxr-xr-x | emcmake | 8 | ||||
-rw-r--r-- | emcmake.bat | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/emcmake b/emcmake new file mode 100755 index 00000000..9617ace5 --- /dev/null +++ b/emcmake @@ -0,0 +1,8 @@ +#!/usr/bin/env python2 + +import os, subprocess, sys +from tools import shared + +configure_path = shared.path_from_root('emconfigure') +exit(subprocess.call([configure_path] + sys.argv[1:])) + diff --git a/emcmake.bat b/emcmake.bat new file mode 100644 index 00000000..c05ba028 --- /dev/null +++ b/emcmake.bat @@ -0,0 +1,2 @@ +@echo off +python "%~dp0\emcmake" %* |