mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 10:16:36 +01:00
14 lines
408 B
Batchfile
14 lines
408 B
Batchfile
@echo off
|
|
rem Run this batch file from the src folder like this:
|
|
rem vcbuild\builddmd.bat
|
|
rem
|
|
rem Make sure that you do not have cl.exe from the dmc compiler
|
|
rem in your path!
|
|
rem
|
|
rem "make" should be the Digital Mars make, this can be found
|
|
rem if dmd's bin folder is in the path
|
|
|
|
set DEBUG=/Zi
|
|
if "%1" == "release" set DEBUG=/O2
|
|
make -f win32.mak CC=vcbuild\dmc_cl INCLUDE=vcbuild DEBUG=%DEBUG% dmd.exe
|