Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 32c4354

Browse files
authored
Merge pull request #1978 from wilzbach/fix-dmd-path
Fix DMD path to ../generated
2 parents 28a5c39 + dabdf43 commit 32c4354

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

win32.mak

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
MODEL=32
44

5-
DMD=dmd
5+
DMD_DIR=..\dmd
6+
BUILD=release
7+
OS=windows
8+
DMD=$(DMD_DIR)\generated\$(OS)\$(BUILD)\$(MODEL)\dmd
69

710
CC=dmc
811

win64.mak

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ MODEL=64
55
VCDIR=\Program Files (x86)\Microsoft Visual Studio 10.0\VC
66
SDKDIR=\Program Files (x86)\Microsoft SDKs\Windows\v7.0A
77

8-
DMD=dmd
8+
DMD_DIR=..\dmd
9+
BUILD=release
10+
OS=windows
11+
DMD=$(DMD_DIR)\generated\$(OS)\$(BUILD)\$(MODEL)\dmd
912

1013
CC="$(VCDIR)\bin\amd64\cl"
1114
LD="$(VCDIR)\bin\amd64\link"

0 commit comments

Comments
 (0)