TRX/tools/tr1/docker/game-win/entrypoint.sh

24 lines
556 B
Bash
Raw Normal View History

2024-03-25 11:09:05 +01:00
#!/usr/bin/env python3
from pathlib import Path
2023-09-20 14:00:42 +02:00
2024-10-02 10:23:23 +02:00
from shared.cli.game_docker_entrypoint import run_script
2023-09-20 14:00:42 +02:00
run_script(
2024-10-02 10:23:23 +02:00
version=1,
platform="win",
compile_args=[
2024-03-25 11:09:05 +01:00
"--cross",
2024-10-02 10:16:45 +02:00
"/app/tools/tr1/docker/game-win/meson_linux_mingw32.txt",
],
release_zip_files=[
2024-10-02 10:23:23 +02:00
(Path("/app/build/tr1/win/TR1X.exe"), "TR1X.exe"),
(
2024-10-02 10:16:45 +02:00
Path("/app/tools/tr1/config/out/TR1X_ConfigTool.exe"),
"TR1X_ConfigTool.exe",
),
],
compressable_exes=[
2024-10-02 10:23:23 +02:00
Path("/app/build/tr1/win/TR1X.exe"),
],
)