Skip to content

Commit 9d777ca

Browse files
committed
fix(icu_static_win): update paths for ICU static libraries and includes
1 parent 20f95ef commit 9d777ca

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/SPC/ConsoleApplication.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*/
3535
final class ConsoleApplication extends Application
3636
{
37-
public const string VERSION = '2.8.4';
37+
public const string VERSION = '2.8.5';
3838

3939
public function __construct()
4040
{

src/SPC/builder/windows/library/icu_static_win.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ class icu_static_win extends WindowsLibraryBase
1212

1313
protected function build(): void
1414
{
15-
copy("{$this->source_dir}\\x64-windows-static\\lib\\icudt.lib", "{$this->getLibDir()}\\icudt.lib");
16-
copy("{$this->source_dir}\\x64-windows-static\\lib\\icuin.lib", "{$this->getLibDir()}\\icuin.lib");
17-
copy("{$this->source_dir}\\x64-windows-static\\lib\\icuio.lib", "{$this->getLibDir()}\\icuio.lib");
18-
copy("{$this->source_dir}\\x64-windows-static\\lib\\icuuc.lib", "{$this->getLibDir()}\\icuuc.lib");
15+
copy("{$this->source_dir}\\lib\\icudt.lib", "{$this->getLibDir()}\\icudt.lib");
16+
copy("{$this->source_dir}\\lib\\icuin.lib", "{$this->getLibDir()}\\icuin.lib");
17+
copy("{$this->source_dir}\\lib\\icuio.lib", "{$this->getLibDir()}\\icuio.lib");
18+
copy("{$this->source_dir}\\lib\\icuuc.lib", "{$this->getLibDir()}\\icuuc.lib");
1919

2020
// create libpq folder in buildroot/includes/libpq
2121
if (!file_exists("{$this->getIncludeDir()}\\unicode")) {
2222
mkdir("{$this->getIncludeDir()}\\unicode");
2323
}
2424

25-
FileSystem::copyDir("{$this->source_dir}\\x64-windows-static\\include\\unicode", "{$this->getIncludeDir()}\\unicode");
25+
FileSystem::copyDir("{$this->source_dir}\\include\\unicode", "{$this->getIncludeDir()}\\unicode");
2626
}
2727
}

0 commit comments

Comments
 (0)