TRX/tools/tr1/docker/game-win/entrypoint.sh
2024-10-03 10:36:35 +02:00

23 lines
556 B
Bash
Executable file

#!/usr/bin/env python3
from pathlib import Path
from shared.cli.game_docker_entrypoint import run_script
run_script(
version=1,
platform="win",
compile_args=[
"--cross",
"/app/tools/tr1/docker/game-win/meson_linux_mingw32.txt",
],
release_zip_files=[
(Path("/app/build/tr1/win/TR1X.exe"), "TR1X.exe"),
(
Path("/app/tools/tr1/config/out/TR1X_ConfigTool.exe"),
"TR1X_ConfigTool.exe",
),
],
compressable_exes=[
Path("/app/build/tr1/win/TR1X.exe"),
],
)