source: tspsg/resources/tspsg.rc @ 0ac9690913

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

+ Toolbar state and position is now saved and restored with Main Window state and position.

  • Made some small improvements to the code.
  • Fixed some errors in the documentation.
  • Made source code more "documentation friendly".
  • Property mode set to 100644
File size: 1.8 KB
RevLine 
[5354a01311]1/*
[430bd7f7e9]2 *  TSPSG: TSP Solver and Generator
[5354a01311]3 *  Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name>
4 *
5 *  $Id$
6 *  $URL$
7 *
8 *  This file is part of TSPSG.
9 */
10
[0ac9690913]11#include <winver.h>
[5354a01311]12#include "..\\src\\resource.h"
[430bd7f7e9]13#pragma code_page(65001)
[5354a01311]14
[430bd7f7e9]15LANGUAGE        0x00, 0x00
16
17// Main Icon
[41d264adbd]18IDI_APPICON     ICON    "tspsg.ico"
[430bd7f7e9]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
[0ac9690913]25#if defined(_DEBUG) || defined(DEBUG)
26        FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE | VS_FF_PRIVATEBUILD
[430bd7f7e9]27#else
[0ac9690913]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
[430bd7f7e9]35#endif
36#ifdef Q_OS_WINCE
[0ac9690913]37        FILEOS VOS_WINCE
[430bd7f7e9]38#else
[0ac9690913]39        FILEOS VOS__WINDOWS32
[430bd7f7e9]40#endif
[0ac9690913]41        FILETYPE VFT_APP
[430bd7f7e9]42BEGIN
43    BLOCK "StringFileInfo"
44    BEGIN
45        BLOCK "000004b0"
46        BEGIN
[55c4b858e9]47            VALUE "Comments", VERSIONID
[430bd7f7e9]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 - 2009 Lёppa"
53            VALUE "OriginalFilename", "tspsg.exe"
54            VALUE "ProductName", "TSPSG"
55            VALUE "ProductVersion", BUILD_VERSION
[0ac9690913]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
[430bd7f7e9]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.