]> vaikene.ee Git - evaf/blob - src/apps/ScosTime/version.rc
Added a small utility that converts date/time values
[evaf] / src / apps / ScosTime / version.rc
1 /**
2 * @file ScosTime/version.rc
3 * @brief Windows resource file with module/library version information.
4 * @author Enar Vaikene
5 *
6 * Copyright (c) 2012 Enar Vaikene
7 *
8 * This file is part of the eVaf C++ cross-platform application development framework.
9 *
10 * This file can be used under the terms of the GNU General Public License
11 * version 3.0 as published by the Free Software Foundation and appearing in
12 * the file LICENSE included in the packaging of this file. Please review the
13 * the following information to ensure the GNU General Public License version
14 * 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
15 *
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
18 */
19
20 #include "version.h"
21 #include <version_rc.h>
22 #include <winver.h>
23
24
25 VS_VERSION_INFO VERSIONINFO
26 FILEVERSION VER_FILE_VERSION
27 PRODUCTVERSION VER_PRODUCT_VERSION
28 FILEFLAGSMASK 0x3fL
29 #ifdef _DEBUG
30 FILEFLAGS VS_FF_DEBUG
31 #else
32 FILEFLAGS 0x0L
33 #endif
34 FILEOS VOS__WINDOWS32
35 FILETYPE VFT_DLL
36 FILESUBTYPE 0x0L
37 BEGIN
38 BLOCK "StringFileInfo"
39 BEGIN
40 BLOCK "040904B0"
41 BEGIN
42 VALUE "CompanyName", VER_COMPANY_NAME_STR
43 VALUE "FileDescription", VER_FILE_DESCRIPTION_STR
44 VALUE "FileVersion", VER_FILE_VERSION_STR
45 VALUE "LegalCopyright", VER_LEGAL_COPYRIGHT_STR
46 VALUE "OriginalFilename", VER_ORIGINAL_FILE_NAME_STR
47 VALUE "ProductName", VER_PRODUCT_NAME_STR
48 VALUE "ProductVersion", VER_PRODUCT_VERSION_STR
49 VALUE "Build Date", VER_PRODUCT_DATE_STR
50 VALUE "Module Name", VER_MODULE_NAME_STR
51 VALUE "Module Type", VER_MODULE_TYPE_STR
52 END
53 END
54 END