mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-10 17:56:36 +01:00
18 lines
565 B
Plaintext
18 lines
565 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@PROJECT_BINARY_DIR@/../import",
|
|
"-I@RUNTIME_DIR@/import",
|
|
"-I@RUNTIME_DIR@/src",
|
|
"-L-L@PROJECT_BINARY_DIR@/../lib@LIB_SUFFIX@", @MULTILIB_ADDITIONAL_PATH@
|
|
"-defaultlib=@RUNTIME_AIO@",
|
|
"-debuglib=@RUNTIME_AIO@-debug"
|
|
];
|
|
};
|