forked from electronicarts/CnC_Red_Alert
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMAKE_CNCNET.BAT
More file actions
19 lines (16 loc) · 782 Bytes
/
MAKE_CNCNET.BAT
File metadata and controls
19 lines (16 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
:: -----------------------------------------------------------------------------
:: -----------------------------------------------------------------------------
:: Build ONLY the CnCNet private variant of Red Alert
:: ENGLISH + CNCNET -> RUN\ENGLISH_CNCNET\
::
:: Thin wrapper: sets the CNCNET build mode and delegates to MAKE.BAT, which
:: handles the ENGLISH+CNCNET-only path (and resolves the private sources from
:: .env CNCNET_RED_ALERT_PRIVATE_REPO or CODE\CNCNET; it errors if neither is
:: present).
:: -----------------------------------------------------------------------------
:: -----------------------------------------------------------------------------
@ECHO OFF
SETLOCAL ENABLEEXTENSIONS
SET "CNCNET=1"
CALL "%~dp0MAKE.BAT"
ENDLOCAL & EXIT /B %ERRORLEVEL%