mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-10 17:56:36 +01:00
17 lines
515 B
Plaintext
17 lines
515 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@/ldc",
|
|
"-I@INCLUDE_INSTALL_DIR@",
|
|
"-L-L@CMAKE_INSTALL_LIBDIR@", @MULTILIB_ADDITIONAL_INSTALL_PATH@
|
|
"-defaultlib=phobos-ldc",
|
|
"-debuglib=phobos-ldc-debug"
|
|
];
|
|
};
|