mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
This commit flips the order of the import paths so that the directories we install our stuff to are searched first. This avoids problems if DMD's has been installed to the same directory.
19 lines
557 B
Plaintext
19 lines
557 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@/@RUNTIME_AIO@",
|
|
"-I@INCLUDE_INSTALL_DIR@/ldc",
|
|
"-I@INCLUDE_INSTALL_DIR@",
|
|
"-L-L@CMAKE_INSTALL_LIBDIR@",
|
|
"-d-version=Tango",
|
|
"-defaultlib=@RUNTIME_AIO@",
|
|
"-debuglib=@RUNTIME_AIO@"
|
|
];
|
|
};
|