-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
23 additions
and
20 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
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,22 @@ | ||
cmake -B x86 -A Win32 -DBUILD_TESTING=OFF | ||
cmake --build x86 --config Release | ||
cmake -B x64 -A x64 -DBUILD_TESTING=OFF | ||
cmake --build x64 --config Release | ||
mkdir dist | ||
mkdir nsis | ||
copy installer\* nsis\ | ||
copy COPYING.txt nsis\ | ||
mkdir nsis\Dictionary | ||
copy x64\libchewing\data\*.dat nsis\Dictionary\ | ||
mkdir nsis\x86 | ||
copy x86\ChewingTextService\Release\*.dll nsis\x86\ | ||
copy x86\libchewing\Release\*.dll nsis\x86\ | ||
copy x86\ChewingPreferences\Release\*.exe nsis\ | ||
copy x86\libchewing\chewing-cli.exe nsis\ | ||
mkdir nsis\x64 | ||
copy x64\ChewingTextService\Release\*.dll nsis\x64\ | ||
copy x64\libchewing\Release\*.dll nsis\x64\ | ||
pushd nsis | ||
makensis installer.nsi | ||
popd | ||
copy nsis\windows-chewing-tsf.exe dist\windows-chewing-tsf-unsigned.exe |