Moved windows ico file and nsis installer to win32 subdir

This commit is contained in:
Pali Rohár 2011-03-26 23:33:44 +01:00
parent 5315f5694d
commit 44face3d70
3 changed files with 6 additions and 3 deletions

View file

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -31,7 +31,7 @@
;-------------------------------- ;--------------------------------
!define ICON "contrib/stratagus.ico" !define ICON "stratagus.ico"
!define STRATAGUS "stratagus.exe" !define STRATAGUS "stratagus.exe"
!define STRATAGUSDBG "stratagus-dbg.exe" !define STRATAGUSDBG "stratagus-dbg.exe"
!define UNINSTALL "uninstall.exe" !define UNINSTALL "uninstall.exe"

View file

@ -1,6 +1,9 @@
#include "include/version.h" #include "include/version.h"
1 ICON "../contrib/stratagus.ico" #define ICO "stratagus.ico"
#define EXE "stratagus.exe"
1 ICON ICO
1 VERSIONINFO 1 VERSIONINFO
FILEVERSION StratagusMajorVersion,StratagusMinorVersion,StratagusPatchLevel,StratagusPatchLevel2 FILEVERSION StratagusMajorVersion,StratagusMinorVersion,StratagusPatchLevel,StratagusPatchLevel2
PRODUCTVERSION StratagusMajorVersion,StratagusMinorVersion,StratagusPatchLevel,StratagusPatchLevel2 PRODUCTVERSION StratagusMajorVersion,StratagusMinorVersion,StratagusPatchLevel,StratagusPatchLevel2
@ -22,7 +25,7 @@ BEGIN
VALUE "LegalCopyright", COPYRIGHT VALUE "LegalCopyright", COPYRIGHT
VALUE "License", LICENSE VALUE "License", LICENSE
VALUE "Homepage", HOMEPAGE VALUE "Homepage", HOMEPAGE
VALUE "OriginalFilename", "stratagus.exe" VALUE "OriginalFilename", EXE
VALUE "ProductName", NAME VALUE "ProductName", NAME
VALUE "ProductVersion", VERSION VALUE "ProductVersion", VERSION
END END