source: tspsg-svn/trunk/resources/tspsg.rc @ 93

Last change on this file since 93 was 87, checked in by laleppa, 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 svn:keywords set to Id URL
File size: 1.8 KB
RevLine 
[17]1/*
[42]2 *  TSPSG: TSP Solver and Generator
[87]3 *  Copyright (C) 2007-2010 Lёppa <contacts[at]oleksii[dot]name>
[17]4 *
5 *  $Id: tspsg.rc 87 2010-01-12 14:11:24Z laleppa $
6 *  $URL: https://tspsg.svn.sourceforge.net/svnroot/tspsg/trunk/resources/tspsg.rc $
7 *
8 *  This file is part of TSPSG.
9 */
10
[71]11#include <winver.h>
[17]12#include "..\\src\\resource.h"
[42]13#pragma code_page(65001)
[17]14
[42]15LANGUAGE        0x00, 0x00
16
17// Main Icon
[61]18IDI_APPICON     ICON    "tspsg.ico"
[42]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
[71]25#if defined(_DEBUG) || defined(DEBUG)
26        FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE | VS_FF_PRIVATEBUILD
[42]27#else
[71]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
[42]35#endif
36#ifdef Q_OS_WINCE
[71]37        FILEOS VOS_WINCE
[42]38#else
[71]39        FILEOS VOS__WINDOWS32
[42]40#endif
[71]41        FILETYPE VFT_APP
[42]42BEGIN
43    BLOCK "StringFileInfo"
44    BEGIN
45        BLOCK "000004b0"
46        BEGIN
[63]47            VALUE "Comments", VERSIONID
[42]48            VALUE "CompanyName", "..::Lёppsville::.. Homes"
49            VALUE "FileDescription", "TSPSG: TSP Solver and Generator"
50            VALUE "FileVersion", BUILD_VERSION
51            VALUE "InternalName", "TSPSG"
[87]52            VALUE "LegalCopyright", "Copyright © 2007-2010 Lёppa <contacts[at]oleksii[dot]name>"
[42]53            VALUE "OriginalFilename", "tspsg.exe"
54            VALUE "ProductName", "TSPSG"
55            VALUE "ProductVersion", BUILD_VERSION
[71]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
[42]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.