| 1 |
# Build Tool internal use only |
|---|
| 2 |
version=0.1 |
|---|
| 3 |
|
|---|
| 4 |
# Override default Dmd.exe pathname |
|---|
| 5 |
# default "c:\dmd\bin\dmd.exe" |
|---|
| 6 |
dmdcmd= |
|---|
| 7 |
|
|---|
| 8 |
# extra library path and files, only one dir allowed, default ".\", libfile will be append |
|---|
| 9 |
# like " libpath\user32_dwt.lib" ... |
|---|
| 10 |
libpath=lib |
|---|
| 11 |
libfiles = user32_dwt.lib imm32_dwt.lib shell32_dwt.lib msimg32_dwt.lib usp10_dwt.lib gdi32_dwt.lib kernel32_dwt.lib olepro32_dwt.lib oleaut32_dwt.lib oleacc_dwt.lib |
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
# standard library files in \dmd\lib and \dm\lib, separated by whitespace |
|---|
| 15 |
stdlibs=advapi32.lib comctl32.lib gdi32.lib shell32.lib comdlg32.lib ole32.lib |
|---|
| 16 |
|
|---|
| 17 |
# extra object files include resource file, separated by whitespace |
|---|
| 18 |
# e.g. filename.res |
|---|
| 19 |
extraobjs=controlexample.res |
|---|
| 20 |
|
|---|
| 21 |
# debug/release mode |
|---|
| 22 |
# 1 : debug mode, the output dir set to .\debug |
|---|
| 23 |
# 0 : release mode, the output dir set to .\release |
|---|
| 24 |
debug=0 |
|---|
| 25 |
|
|---|
| 26 |
# IMPORTANT, read the following |
|---|
| 27 |
# don't specify the following swiches, BldTool.exe auto set them according to "debug=" flag |
|---|
| 28 |
# debugflag = " -g -debug -od.\debug"; |
|---|
| 29 |
# releaseflag = " -release -O -od.\release"; |
|---|
| 30 |
# You may set your import file path, or link flag and etc. here |
|---|
| 31 |
# e.g. : -Ic:\mylib\import |
|---|
| 32 |
# prevent console window "-L/exet:nt/su:windows" |
|---|
| 33 |
# -version=Unicode |
|---|
| 34 |
compileflag=-w -L/exet:nt/su:windows |
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
# the output file name |
|---|
| 38 |
ouputfile=controlexample.exe |
|---|
| 39 |
|
|---|
| 40 |
# subdirectory, this option set the project root dir to ".\currentdir\subdir" |
|---|
| 41 |
# in most case, you can leave it blank |
|---|
| 42 |
subdir= |
|---|
| 43 |
|
|---|
| 44 |
# files excluded, prevent these files from built and linked, separated by whitespace |
|---|
| 45 |
# This is usful when the folder contains several files which has main() function. |
|---|
| 46 |
excludedfiles=hello.d |
|---|
| 47 |
|
|---|
| 48 |
# like excludedfiles, but folders filtered, |
|---|
| 49 |
# Note: not implemented currently |
|---|
| 50 |
excludeddir= |
|---|