File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -562,9 +562,18 @@ sub AddProject
562
562
if ($self -> {options }-> {icu })
563
563
{
564
564
$proj -> AddIncludeDir($self -> {options }-> {icu } . ' \include' );
565
- $proj -> AddLibrary($self -> {options }-> {icu } . ' \lib\icuin.lib' );
566
- $proj -> AddLibrary($self -> {options }-> {icu } . ' \lib\icuuc.lib' );
567
- $proj -> AddLibrary($self -> {options }-> {icu } . ' \lib\icudt.lib' );
565
+ if ($self -> {platform } eq ' Win32' )
566
+ {
567
+ $proj -> AddLibrary($self -> {options }-> {icu } . ' \lib\icuin.lib' );
568
+ $proj -> AddLibrary($self -> {options }-> {icu } . ' \lib\icuuc.lib' );
569
+ $proj -> AddLibrary($self -> {options }-> {icu } . ' \lib\icudt.lib' );
570
+ }
571
+ else
572
+ {
573
+ $proj -> AddLibrary($self -> {options }-> {icu } . ' \lib64\icuin.lib' );
574
+ $proj -> AddLibrary($self -> {options }-> {icu } . ' \lib64\icuuc.lib' );
575
+ $proj -> AddLibrary($self -> {options }-> {icu } . ' \lib64\icudt.lib' );
576
+ }
568
577
}
569
578
if ($self -> {options }-> {xml })
570
579
{
You can’t perform that action at this time.
0 commit comments