Subversion Repositories Tewi

Rev

Rev 52 | Rev 244 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
49 nishi 1
#include <winver.h>
2
#include "tw_version.h"
52 nishi 3
#include "../config.h"
49 nishi 4
 
128 nishi 5
id ICON "../Binary/tewi.ico"
48 nishi 6
VS_VERSION_INFO VERSIONINFO
49 nishi 7
	FILEVERSION 1,0,0,0
8
	PRODUCTVERSION 1,0,0,0
48 nishi 9
BEGIN
10
	BLOCK "StringFileInfo"
11
	BEGIN
12
		BLOCK "040904E4"
13
		BEGIN
49 nishi 14
			VALUE "CompanyName", "Nishi\0"
52 nishi 15
#ifdef NO_SSL
49 nishi 16
			VALUE "FileDescription", "Simple HTTP Daemon\0"
52 nishi 17
#else
18
			VALUE "FileDescription", "Simple HTTP Daemon with TLS/SSL\0"
19
#endif
49 nishi 20
			VALUE "LegalCopyright", "Public domain, original by Nishi\0"
21
			VALUE "FileVersion", TW_VERSION
22
			VALUE "ProductVersion", TW_VERSION
48 nishi 23
			VALUE "ProductName", "Tewi HTTPd\0"
49 nishi 24
			VALUE "License", "Unlicense\0"
25
			VALUE "Info", "http://nishi.boats/tewi\0"
48 nishi 26
		END
27
	END
49 nishi 28
 
29
	BLOCK "VarFileInfo"
30
	BEGIN
31
		VALUE "Translation", 0x409, 65001
32
	END
48 nishi 33
END