mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-28 12:47:58 +03:00
23 lines
556 B
Bash
Executable file
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"),
|
|
],
|
|
)
|