Merge pull request #138 from volo-zyko/add-icu-search-paths

Add ICU libs search paths even when ICU_ICUUC_NAME, ICU_ICUDT_NAME, and ICU_ICUIN_NAME are provided by user
This commit is contained in:
jzmaddock
2021-06-12 14:22:02 +01:00
committed by GitHub

View File

@ -57,7 +57,7 @@ if ! $(disable-icu)
if $(ICU_ICUUC_NAME)
{
lib icuuc : : <name>$(ICU_ICUUC_NAME) ;
lib icuuc : : <name>$(ICU_ICUUC_NAME) <conditional>@path_options ;
}
else
{
@ -71,7 +71,7 @@ if ! $(disable-icu)
}
if $(ICU_ICUDT_NAME)
{
lib icudt : : <name>$(ICU_ICUDT_NAME) ;
lib icudt : : <name>$(ICU_ICUDT_NAME) <conditional>@path_options ;
}
else
{
@ -85,7 +85,7 @@ if ! $(disable-icu)
}
if $(ICU_ICUIN_NAME)
{
lib icuin : : <name>$(ICU_ICUIN_NAME) ;
lib icuin : : <name>$(ICU_ICUIN_NAME) <conditional>@path_options ;
}
else
{