Added new config files missing from 4703232.

These will be picked for (and renamed on) installation and contain absolute paths for the directories involved.
This commit is contained in:
David Nadlinger
2011-11-09 21:15:14 +01:00
parent 28b1d7f5de
commit 3cf958a1b0
2 changed files with 34 additions and 0 deletions

17
ldc2_install.conf.in Normal file
View File

@@ -0,0 +1,17 @@
// This configuration file uses libconfig.
// See http://www.hyperrealm.com/libconfig/ for syntax details.
// The default group is required
default:
{
// 'switches' holds array of string that are appends to the command line
// arguments before they are parsed.
switches = [
"-I@INCLUDE_INSTALL_DIR@",
"-I@INCLUDE_INSTALL_DIR@/phobos",
"-I@INCLUDE_INSTALL_DIR@/ldc",
"-L-L@CMAKE_INSTALL_LIBDIR@",
"-defaultlib=lphobos2",
"-debuglib=lphobos2"
];
};