source: tspsg/tspsg.pro @ b5a996bd47

0.1.4.170-beta2-bb10appveyorimgbotreadme 0.1.4.170-beta2
Last change on this file since b5a996bd47 was b5a996bd47, checked in by Oleksii Serdiuk, 13 years ago

Updated ChangeLog? and tspsg.tag.

PS: Here comes the second public beta!

  • Property mode set to 100644
File size: 2.1 KB
RevLine 
[e9db3e216b]1######################################################################
2#
3#  TSPSG: TSP Solver and Generator
[bfe1e5e2ea]4#  Copyright (C) 2007-2011 Lёppa <contacts[at]oleksii[dot]name>
[e9db3e216b]5#
6#  $Id$
7#  $URL$
8#
9#  This file is part of TSPSG.
10#
11######################################################################
12
13!nosvg {
[d8a3826f87]14    QT += svg
[e9db3e216b]15} else {
[d8a3826f87]16    DEFINES += NOSVG
[e9db3e216b]17}
18
[97e90f9be6]19wincewm*|symbian|maemo*|simulator {
[d8a3826f87]20    CONFIG += handheld
[97e90f9be6]21}
22
[e9db3e216b]23TEMPLATE = app
24
25# QMAKE_MAC_SDK = /Developer/SDKs/MacOSX10.5.sdk
26
[f5c945d7ac]27# Version information
28QMAKE_TARGET_COMPANY = Oleksii "Lёppa" Serdiuk
29QMAKE_TARGET_PRODUCT = TSP Solver and Generator
30QMAKE_TARGET_DESCRIPTION = TSPSG: TSP Solver and Generator
[d97db6d321]31QMAKE_TARGET_COPYRIGHT = Copyright © 2007-2011 Oleksii "Lёppa" Serdiuk <contacts[at]oleksii[dot]name>
[f5c945d7ac]32
[e9db3e216b]33# Versioning
34BUILD_VERSION_MAJOR = 0
35BUILD_VERSION_MINOR = 1
[ac9ff7c0f1]36BUILD_RELEASE = 4
[e9db3e216b]37
38# These are only defined on releases
[b5a996bd47]39DEFINES += TSPSG_RELEASE_BUILD
40DEFINES += BUILD_STATUS_TYPE=beta
41DEFINES += BUILD_STATUS_NUMBER=2
[ac9ff7c0f1]42
[b5a996bd47]43REVISION = 170
[cc5c5108a3]44isEmpty(REVISION) {
[d8a3826f87]45    REVISION = $$system(svnversion)
[cc5c5108a3]46}
[ac9ff7c0f1]47isEmpty(REVISION)|isEqual(REVISION,exported) {
[d8a3826f87]48    REVISION = 0
[ac9ff7c0f1]49} else {
[d8a3826f87]50    REVISION = $$replace(REVISION,":","")
51    REVISION = $$replace(REVISION,"M","")
[ac9ff7c0f1]52}
53SHORT_VERSION = $$sprintf("%1.%2",$$BUILD_VERSION_MAJOR,$$BUILD_VERSION_MINOR)
[cac8759dba]54win32-msvc*|wincewm* {
[d8a3826f87]55    VERSION = $$SHORT_VERSION
[e9db3e216b]56} else {
[d8a3826f87]57    VERSION = $$sprintf("%1.%2",$$SHORT_VERSION,$$BUILD_RELEASE)
[e9db3e216b]58}
59
60DEFINES += BUILD_VERSION_MAJOR=$$BUILD_VERSION_MAJOR \
[d8a3826f87]61    BUILD_VERSION_MINOR=$$BUILD_VERSION_MINOR \
62    BUILD_RELEASE=$$BUILD_RELEASE \
63    BUILD_NUMBER=$$REVISION
[e9db3e216b]64
65CONFIG(release, debug|release) {
[d8a3826f87]66    OBJECTS_DIR = release
67    D =
[e9db3e216b]68} else {
[d8a3826f87]69    OBJECTS_DIR = debug
70    DEFINES += DEBUG
[e9db3e216b]71#       CONFIG += console
[d8a3826f87]72    D = d
[e9db3e216b]73}
[131c5fc3ba]74DESTDIR = bin
[e9db3e216b]75TARGET = tspsg$${D}
76
77# Saving all intermediate files to tmp directory.
[131c5fc3ba]78MOC_DIR = tmp
79RCC_DIR = tmp
80UI_DIR = tmp
[e9db3e216b]81
82# Include 3rd party libraries
[97e90f9be6]83!handheld {
[d8a3826f87]84    include(src/3rdparty/qttoolbardialog-2.2_1-opensource/src/qttoolbardialog.pri)
[e9db3e216b]85}
86
[43c29c04ba]87win32:LIBS += -lole32
88
[e9db3e216b]89# Include file(s)
90include(tspsg.pri)
91
[cc5c5108a3]92# Installation and deployment rules
[e9db3e216b]93include(install.pri)
Note: See TracBrowser for help on using the repository browser.