File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -562,9 +562,18 @@ sub AddProject
562562 if ($self -> {options }-> {icu })
563563 {
564564 $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+ }
568577 }
569578 if ($self -> {options }-> {xml })
570579 {
You can’t perform that action at this time.
0 commit comments