|
1
|
/* |
|
2
|
** Copyright (c) 2012 D. Richard Hipp |
|
3
|
** |
|
4
|
** This program is free software; you can redistribute it and/or |
|
5
|
** modify it under the terms of the Simplified BSD License (also |
|
6
|
** known as the "2-Clause License" or "FreeBSD License".) |
|
7
|
|
|
8
|
** This program is distributed in the hope that it will be useful, |
|
9
|
** but without any warranty; without even the implied warranty of |
|
10
|
** merchantability or fitness for a particular purpose. |
|
11
|
** |
|
12
|
** Author contact information: |
|
13
|
** [email protected] |
|
14
|
** http://www.hwaci.com/drh/ |
|
15
|
** |
|
16
|
******************************************************************************* |
|
17
|
** |
|
18
|
** This file contains resource information for the executable on Windows. |
|
19
|
*/ |
|
20
|
|
|
21
|
#if !defined(_WIN32_WCE) |
|
22
|
#include "winresrc.h" |
|
23
|
#else |
|
24
|
#include "windows.h" |
|
25
|
#endif /* !defined(_WIN32_WCE) */ |
|
26
|
|
|
27
|
#if !defined(VS_FF_NONE) |
|
28
|
# define VS_FF_NONE 0x00000000L |
|
29
|
#endif /* !defined(VS_FF_NONE) */ |
|
30
|
|
|
31
|
#include "VERSION.h" |
|
32
|
#define _RC_COMPILE_ |
|
33
|
#include "config.h" |
|
34
|
#include "sqlite3.h" |
|
35
|
#include "zlib.h" |
|
36
|
|
|
37
|
#if defined(FOSSIL_ENABLE_SSL) |
|
38
|
#include "openssl/opensslv.h" |
|
39
|
#endif /* defined(FOSSIL_ENABLE_SSL) */ |
|
40
|
|
|
41
|
#if defin |
|
42
|
#define IDI_FOSSIL 8001 |
|
43
|
|
|
44
|
IDI BLOCK "040904b0"UBLANG_ENGLISH_US |
|
45
|
#pragma code_page(1252) |
|
46
|
#endif /* defined(_WIN32) */ |
|
47
|
|
|
48
|
/* |
|
49
|
* Icon |
|
50
|
*/ |
|
51
|
|
|
52
|
#define IDI_FOSSIL 8001 |
|
53
|
|
|
54
|
IDI_FOSSIL ICON "fossil.ico" |
|
55
|
|
|
56
|
/* |
|
57
|
* Version |
|
58
|
*/ |
|
59
|
|
|
60
|
VS_VERSION_INFO VERSIONINFO |
|
61
|
FILEVERSION RELEASE_RESOURCE_VERSION |
|
62
|
PRODUCTVERSION RELEASE_RESOURCE_VERSION |
|
63
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK |
|
64
|
#if defined(_DEBUG) |
|
65
|
FILEFLAGS VS_FF_DEBUG |
|
66
|
#else |
|
67
|
FILEFLAGS VS_FF_NONE |
|
68
|
#endif /* defined(_DEBUG) */ |
|
69
|
FILEOS VOS__WINDOWS32 |
|
70
|
FILETYPE VFT_APP |
|
71
|
FILESUBTYPE VFT2_UNKNOWN |
|
72
|
BEGIN |
|
73
|
BLOCK "StringFileInfo" |
|
74
|
BEGIN |
|
75
|
BLOCK "040904b0" |
|
76
|
BEGIN |
|
77
|
VALUE "CompanyName", "Fossil Development Team\0" |
|
78
|
VALUE "FileDescription", "Fossil is a simple, high-reliability, distributed software configuration management system.\0" |
|
79
|
VALUE "ProductName", "Fossil\0" |
|
80
|
VALUE "ProductVersion", "Fossil " RELEASE_VERSION " " MANIFEST_VERSION " " MANIFEST_DATE " UTC\0" |
|
81
|
VALUE "FileVersion", "Fossil " RELEASE_VERSION " " MANIFEST_VERSION " " MANIFEST_DATE " UTC\0" |
|
82
|
VALUE "InternalName", "fossil\0" |
|
83
|
VALUE "LegalCopyright", "Copyri |