diff --git a/ldc2_install.conf.in b/ldc2_install.conf.in new file mode 100644 index 00000000..506c2826 --- /dev/null +++ b/ldc2_install.conf.in @@ -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" + ]; +}; diff --git a/ldc_install.conf.in b/ldc_install.conf.in new file mode 100644 index 00000000..eb03496b --- /dev/null +++ b/ldc_install.conf.in @@ -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@/@RUNTIME_AIO@", + "-I@INCLUDE_INSTALL_DIR@/ldc", + "-L-L@CMAKE_INSTALL_LIBDIR@", + "-defaultlib=@RUNTIME_AIO@", + "-debuglib=@RUNTIME_AIO@" + ]; +};