|
Revision 171:b080e62b16b4, 468 bytes
(checked in by Abscissa, 2 years ago)
|
Enhanced buildscript to simplify compiling for new users
|
| Line | |
|---|
| 1 |
@echo off |
|---|
| 2 |
rem This has exactly the same semantics as the old buildscript, |
|---|
| 3 |
rem but supports extra optional command line arguments. |
|---|
| 4 |
rem Too see the supported args, run: build.bat --help |
|---|
| 5 |
|
|---|
| 6 |
rem Pre-build 'buildHelper.d' as a workaround for RDMD issue #4688 |
|---|
| 7 |
rdmd --build-only -ofbuildHelper -unittest buildHelper.d && buildHelper.exe %* |
|---|
| 8 |
|
|---|
| 9 |
rem Old buildscript: |
|---|
| 10 |
rem cls && dmc.exe bridge\bridge.cpp -c && dmd -debug -g @commands.txt && dmd -release -O -inline @commands.txt |
|---|