add version info

git-svn-id: file:///raid/svn-personal/tewi/trunk@78 8739d7e6-ffea-ec47-b151-bdff447c6205
This commit is contained in:
Nishi 2024-09-19 10:56:38 +00:00
parent cc768bffab
commit 969a93e43c
2 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# $Id$
VIFileVersion "${VERSION}"
VIProductVersion "${VERSION}"
VIFileVersion "1.0.0.0"
VIProductVersion "1.0.0.0"
VIAddVersionKey "FileVersion" "${VERSION}"
VIAddVersionKey "LegalCopyright" "Public domain. Original by Nishi"
VIAddVersionKey "FileDescription" "Tewi HTTPd Installer"

View File

@ -7,6 +7,8 @@ fail() {
exit 1
}
VERSION=`make get-version`
make clean || fail
make PLATFORM=$1 -j4 || fail
cp Server/tewi.exe tewi.exe
@ -14,6 +16,6 @@ make clean || fail
make PLATFORM=$1-service -j4 || fail
cp Server/tewi.exe tewi-service.exe
cd Server
makensis /DVERSION=\"`make get-version`\" install.nsi
makensis -DVERSION=$VERSION install.nsi
rm -f tewi.exe tewi-service.exe
cd ..