Skip to content

Commit 5cc753d

Browse files
committed
cs fix
1 parent f7a0f50 commit 5cc753d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 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}\\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");
1919

2020
// create libpq folder in buildroot/includes/libpq
21-
if (!file_exists("{$this->getIncludeDir()}\unicode")) {
22-
mkdir("{$this->getIncludeDir()}\unicode");
21+
if (!file_exists("{$this->getIncludeDir()}\\unicode")) {
22+
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}\\x64-windows-static\\include\\unicode", "{$this->getIncludeDir()}\\unicode");
2626
}
2727
}

0 commit comments

Comments
 (0)