Changeset 97 in tspsg-svn for trunk/src/version.h
Legend:
- Unmodified
- Added
- Removed
-
trunk/src
-
Property
svn:ignore
set to
pch.h.cpp
-
Property
svn:ignore
set to
-
trunk/src/version.h
r96 r97 1 1 /*! 2 2 * \file version.h 3 * \author Copyright (C)2007-2010 Lёppa <contacts[at]oleksii[dot]name>3 * \author Copyright © 2007-2010 Lёppa <contacts[at]oleksii[dot]name> 4 4 * 5 5 * $Id$ … … 29 29 * \image html tspsg.png 30 30 * <b>TSPSG: TSP Solver and Generator</b> 31 * \author Copyright (C)2007-2010 Lёppa <contacts[at]oleksii[dot]name>31 * \author Copyright © 2007-2010 Lёppa <contacts[at]oleksii[dot]name> 32 32 * 33 * $Id$ 34 * $URL$ 33 * \b Homepage: <a href="http://tspsg.sourceforge.net/">tspsg.sourceforge.net</a> 35 34 * 36 35 * TSPSG is free software: you can redistribute it and/or modify … … 51 50 #define VERSION_H 52 51 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 59 60 /*! 60 61 * \brief TSPSG release number … … 66 67 * - 11 -- x: <b>release</b> 1 to x-10 67 68 */ 68 //#define BUILD_RELEASE 2 69 #ifndef BUILD_RELEASE 70 #define BUILD_RELEASE 0 71 #endif // BUILD_RELEASE 69 72 70 73 /*! … … 73 76 * This will only change on releases and will be the same as revision number. 74 77 */ 75 //#define BUILD_NUMBER 65535 78 #ifndef BUILD_NUMBER 79 #define BUILD_NUMBER 0 80 #endif // BUILD_NUMBER 76 81 77 82 /*! … … 83 88 #ifndef TSPSG_RELEASE_BUILD 84 89 #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) 95 96 #endif // TSPSG_RELEASE_BUILD 96 97 … … 102 103 /*! 103 104 * \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]. 105 106 */ 106 107 #ifndef BUILD_STATUS
Note: See TracChangeset
for help on using the changeset viewer.