source: tspsg/resources/tspsg.rc @ 1757eb594b

0.1.3.145-beta1-symbian0.1.4.170-beta2-bb10appveyorimgbotreadme
Last change on this file since 1757eb594b was 1757eb594b, checked in by Oleksii Serdiuk, 14 years ago

+ Added Fractional accuracy (in decimail places) to settings.
+ Created defaults.h file. Moved all default defines there.

  • Replaced all double types with qreal.
  • Replaced all calls to trUtf8() with tr() as we use setCodecForTr() to set UTF-8 encoding as default and tr() is enough.
  • Replaced all 2009 with 2010 in copyrights.
  • Fixed an error when loading .zkt file with less than 5 cities.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1/*
2 *  TSPSG: TSP Solver and Generator
3 *  Copyright (C) 2007-2010 Lёppa <contacts[at]oleksii[dot]name>
4 *
5 *  $Id$
6 *  $URL$
7 *
8 *  This file is part of TSPSG.
9 */
10
11#include <winver.h>
12#include "..\\src\\resource.h"
13#pragma code_page(65001)
14
15LANGUAGE        0x00, 0x00
16
17// Main Icon
18IDI_APPICON     ICON    "tspsg.ico"
19
20// Version Info
21VS_VERSION_INFO VERSIONINFO
22        FILEVERSION BUILD_VERSION_MAJOR,BUILD_VERSION_MINOR,BUILD_RELEASE,BUILD_NUMBER
23        PRODUCTVERSION BUILD_VERSION_MAJOR,BUILD_VERSION_MINOR,BUILD_RELEASE,BUILD_NUMBER
24        FILEFLAGSMASK 0x17L
25#if defined(_DEBUG) || defined(DEBUG)
26        FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE | VS_FF_PRIVATEBUILD
27#else
28        #if BUILD_NUMBER == 65535
29                FILEFLAGS VS_FF_PRERELEASE | VS_FF_SPECIALBUILD
30        #elif BUILD_RELEASE < 11
31                        FILEFLAGS VS_FF_PRERELEASE
32        #else
33                        FILEFLAGS 0x0L
34        #endif
35#endif
36#ifdef Q_OS_WINCE
37        FILEOS VOS_WINCE
38#else
39        FILEOS VOS__WINDOWS32
40#endif
41        FILETYPE VFT_APP
42BEGIN
43    BLOCK "StringFileInfo"
44    BEGIN
45        BLOCK "000004b0"
46        BEGIN
47            VALUE "Comments", VERSIONID
48            VALUE "CompanyName", "..::Lёppsville::.. Homes"
49            VALUE "FileDescription", "TSPSG: TSP Solver and Generator"
50            VALUE "FileVersion", BUILD_VERSION
51            VALUE "InternalName", "TSPSG"
52            VALUE "LegalCopyright", "Copyright © 2007-2010 Lёppa <contacts[at]oleksii[dot]name>"
53            VALUE "OriginalFilename", "tspsg.exe"
54            VALUE "ProductName", "TSPSG"
55            VALUE "ProductVersion", BUILD_VERSION
56#if defined(_DEBUG) || defined(DEBUG)
57            VALUE "PrivateBuild", "Debug development build"
58#elif BUILD_NUMBER == 65535
59            VALUE "SpecialBuild", "Internal development build"
60#endif
61        END
62    END
63    BLOCK "VarFileInfo"
64    BEGIN
65        VALUE "Translation", 0x0, 1200
66    END
67END
Note: See TracBrowser for help on using the repository browser.