mirror of
https://gitgud.io/Vrelnir/degrees-of-lewdity.git
synced 2026-09-15 06:04:27 +08:00
12 lines
530 B
Batchfile
12 lines
530 B
Batchfile
@echo off
|
|
|
|
:: Set working directory
|
|
pushd %~dp0
|
|
@set TWEEGO_PATH="%~dp0devTools\tweego\StoryFormats"
|
|
|
|
:: Run the appropriate compiler for the user's CPU architecture.
|
|
if %PROCESSOR_ARCHITECTURE% == AMD64 (
|
|
CALL "%~dp0devTools\tweego\tweego_win64.exe" -o "%~dp0Degrees of Lewdity VERSION.html" --head "%~dp0devTools\head.html" "%~dp0game" --module "%~dp0modules"
|
|
) else (
|
|
CALL "%~dp0devTools\tweego\tweego_win86.exe" -o "%~dp0Degrees of Lewdity VERSION.html" --head "%~dp0devTools\head.html" "%~dp0game" --module "%~dp0modules"
|
|
) |