-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #329 from kobake/bregonig-dll-extract
bregonig.dll を sakura.exe と同じ場所に自動配置
- Loading branch information
Showing
6 changed files
with
43 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# 正規表現ライブラリ bregonig.dll | ||
## Website | ||
- http://k-takata.o.oo7.jp/mysoft/bregonig.html | ||
|
||
## バイナリ入手先 | ||
- https://bitbucket.org/k_takata/bregonig/downloads/bron412.zip | ||
|
||
## ソースコード | ||
- http://github.com/k-takata/bregonig | ||
|
||
## ライセンス | ||
- http://k-takata.o.oo7.jp/mysoft/bregonig.html#SCT-9. | ||
|
||
## 展開ファイル | ||
- bron412.zip … 上述サイトから入手したZIPアーカイブ | ||
- Win32/bregonig.dll … bron412.zip から取り出した 32bit版 bregonig.dll | ||
- x64/bregonig.dll … bron412.zip から取り出した 64bit版 bregonig.dll |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,23 @@ | ||
@echo off | ||
|
||
SETLOCAL | ||
|
||
@echo ======================= | ||
@echo postBuild | ||
@echo ======================= | ||
|
||
: ---- arguments ---- : | ||
: "Win32" or "x64" | ||
set PLATFORM=%1 | ||
@echo PLATFORM=%PLATFORM% | ||
|
||
: "Debug" or "Release" | ||
set CONFIGURATION=%2 | ||
@echo CONFIGURATION=%CONFIGURATION% | ||
|
||
: ---- copy bregonig.dll ---- : | ||
@echo Copy bregonig.dll to destination directory. | ||
copy /B ..\installer\externals\bregonig\%PLATFORM%\bregonig.dll ..\%PLATFORM%\%CONFIGURATION%\bregonig.dll | ||
|
||
|
||
ENDLOCAL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters