comparison ldc.conf.in @ 1103:b30fe7e1dbb9

- Updated to DMD frontend 1.041. - Removed dmd/inifile.c , it's not under a free license, replaced with libconfig based config file.
author Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
date Thu, 12 Mar 2009 20:37:27 +0100
parents a8cb25d478c4
children 81fd116b5dc9
comparison
equal deleted inserted replaced
1102:ae950bd712d3 1103:b30fe7e1dbb9
1 [Environment] 1 // This configuration file uses libconfig.
2 DFLAGS=-I@RUNTIME_DIR@ -I@RUNTIME_DIR@/lib/common -L-L%@P%/../lib -d-version=Tango -defaultlib=@RUNTIME_AIO@ -debuglib=@RUNTIME_AIO@ 2 // See http://www.hyperrealm.com/libconfig/ for syntax details.
3
4 // The default group is required
5 default:
6 {
7 // 'switches' holds array of string that are appends to the command line
8 // arguments before they are parsed.
9 // {#} is replaced with the path to the directory holding the executable
10 switches = [
11 "-I@RUNTIME_DIR@",
12 "-I@RUNTIME_DIR@/lib/common",
13 "-L-L@PROJECT_BINARY_DIR@/../lib",
14 "-d-version=Tango",
15 "-defaultlib=@RUNTIME_AIO@"
16 ];
17 };