Changeset f19df0a3e5 in tspsg for src/version.h


Ignore:
Timestamp:
Mar 3, 2010, 12:55:23 AM (14 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
e2abfd326f
Parents:
162d5c5f94
Message:

+ Added precompiled header (PCH) file: should decrease project build time.

  • Improved installation and deployment rules in .pro file.
  • Improved translucency effect under Windows Vista/7.
  • Slightly modified qtwin.h to be included into the source documentation.
  • Regenerated source documentation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/version.h

    r162d5c5f94 rf19df0a3e5  
    11/*!
    22 * \file version.h
    3  * \author Copyright (C) 2007-2010 Lёppa <contacts[at]oleksii[dot]name>
     3 * \author Copyright &copy; 2007-2010 Lёppa <contacts[at]oleksii[dot]name>
    44 *
    55 *  $Id$
     
    2929 * \image html tspsg.png
    3030 *  <b>TSPSG: TSP Solver and Generator</b>
    31  * \author Copyright (C) 2007-2010 Lёppa <contacts[at]oleksii[dot]name>
     31 * \author Copyright &copy; 2007-2010 Lёppa <contacts[at]oleksii[dot]name>
    3232 *
    33  *  $Id$
    34  *  $URL$
     33 *  \b Homepage: <a href="http://tspsg.sourceforge.net/">tspsg.sourceforge.net</a>
    3534 *
    3635 *  TSPSG is free software: you can redistribute it and/or modify
     
    5150#define VERSION_H
    5251
    53 //! TSPSG version ID
    54 //#define VERSIONID "$Id$"
    55 //! Major version of current TSPSG build
    56 //#define BUILD_VERSION_MAJOR 0
    57 //! Minor version of current TSPSG build
    58 //#define BUILD_VERSION_MINOR 1
     52#ifndef BUILD_VERSION_MAJOR
     53        //! Major version of current TSPSG build
     54        #define BUILD_VERSION_MAJOR 0
     55#endif // BUILD_VERSION_MAJOR
     56#ifndef BUILD_VERSION_MINOR
     57        //! Minor version of current TSPSG build
     58        #define BUILD_VERSION_MINOR 0
     59#endif // BUILD_VERSION_MINOR
    5960/*!
    6061 * \brief TSPSG release number
     
    6667 *    - 11 --  x: <b>release</b> 1 to x-10
    6768 */
    68 //#define BUILD_RELEASE 2
     69#ifndef BUILD_RELEASE
     70        #define BUILD_RELEASE 0
     71#endif // BUILD_RELEASE
    6972
    7073/*!
     
    7376 *  This will only change on releases and will be the same as revision number.
    7477 */
    75 //#define BUILD_NUMBER 65535
     78#ifndef BUILD_NUMBER
     79        #define BUILD_NUMBER 0
     80#endif // BUILD_NUMBER
    7681
    7782/*!
     
    8388#ifndef TSPSG_RELEASE_BUILD
    8489        #define BUILD_STATUS (dev build)
    85 #else
    86         #if BUILD_RELEASE < 4
    87                 #define BUILD_STATUS (alpha)
    88         #elif BUILD_RELEASE < 8
    89                 #define BUILD_STATUS (beta)
    90         #elif BUILD_RELEASE < 11
    91                 #define BUILD_STATUS (rc)
    92 //      #else
    93 //              #define BUILD_STATUS
    94         #endif
     90#elif BUILD_RELEASE < 4
     91        #define BUILD_STATUS (alpha)
     92#elif BUILD_RELEASE < 8
     93        #define BUILD_STATUS (beta)
     94#elif BUILD_RELEASE < 11
     95        #define BUILD_STATUS (rc)
    9596#endif // TSPSG_RELEASE_BUILD
    9697
     
    102103/*!
    103104 * \def BUILD_VERSION
    104  * \brief Full version of TSPSG in the form: \c major.\c minor.\c release.\c build [ \c status].
     105 * \brief Full version of TSPSG in the form: \c major.minor.release.build [\c status].
    105106 */
    106107#ifndef BUILD_STATUS
Note: See TracChangeset for help on using the changeset viewer.