comparison ldc2.conf.in @ 1129:8403fec8c34c

Add dmd-style configuration file for rebuild usage. See #236 and thanks to ccuter for the patch!
author Christian Kamm <kamm incasoftware de>
date Sat, 21 Mar 2009 09:47:48 +0100
parents d6895f24dc8f
children 15f1707721fa
comparison
equal deleted inserted replaced
1128:83ef1e7cde70 1129:8403fec8c34c
1 [Environment] 1 // This configuration file uses libconfig.
2 DFLAGS=-I@RUNTIME_DIR@/import -L-L%@P%/../lib 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 switches = [
10 "-I@RUNTIME_DIR@/import",
11 "-L-L@PROJECT_BINARY_DIR@/../lib",
12 "-defaultlib=@RUNTIME_AIO@",
13 "-debuglib=@RUNTIME_AIO@"
14 ];
15 };