2026-03-17 02:39:45 +01:00
|
|
|
if __name__ == "__main__":
|
|
|
|
|
import pathlib
|
|
|
|
|
import runpy
|
|
|
|
|
import sys
|
2026-03-06 01:42:41 +01:00
|
|
|
|
2026-03-17 02:39:45 +01:00
|
|
|
print(
|
|
|
|
|
"⚠️ WARNING: This script is deprecated and slated for removal in Python 3.20; "
|
|
|
|
|
"execute the `Platforms/emscripten/` directory instead (i.e. `python Platforms/emscripten`)\n",
|
|
|
|
|
file=sys.stderr,
|
2026-03-11 01:43:27 +01:00
|
|
|
)
|
|
|
|
|
|
2026-03-17 02:39:45 +01:00
|
|
|
checkout = pathlib.Path(__file__).parents[3]
|
|
|
|
|
emscripten_dir = (checkout / "Platforms/emscripten").absolute()
|
|
|
|
|
runpy.run_path(str(emscripten_dir), run_name="__main__")
|