mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-05-01 16:01:29 +02:00
These will be picked for (and renamed on) installation and contain absolute paths for the directories involved.
18 lines
512 B
Plaintext
18 lines
512 B
Plaintext
// 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"
|
|
];
|
|
};
|