source: tspsg/tspsg.pro @ 7ba743d983

appveyorimgbotreadme
Last change on this file since 7ba743d983 was 7ba743d983, checked in by Oleksii Serdiuk, 12 years ago

Converted svn keywords into git export-subst attribute.

However, keywords are now replaced only when you run 'git archive'.

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