source: tspsg/tspsg.pro @ cc5c5108a3

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

Fixed some errors in the tspsg.desktop file and tweaked project files a little...

  • Property mode set to 100644
File size: 2.5 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$
7#  $URL$
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 © 200-20110 Oleksii "Lёppa" Serdiuk <contacts[at]oleksii[dot]name>
32
33# Versioning
34BUILD_VERSION_MAJOR = 0
35BUILD_VERSION_MINOR = 1
36BUILD_RELEASE = 4
37
38# These are only defined on releases
39#DEFINES += TSPSG_RELEASE_BUILD
40#DEFINES += BUILD_STATUS_TYPE=beta
41#DEFINES += BUILD_STATUS_NUMBER=1
42
43#REVISION = 145
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
65# A hack to determine whether we have static or dynamic Qt build
66macx {
67        PRL = $$[QT_INSTALL_LIBS] QtCore.framework QtCore.prl
68} else:symbian|maemo* {
69        # Nothing here
70} else:unix {
71        PRL = $$[QT_INSTALL_LIBS] libQtCore.prl
72} else {
73        PRL = $$[QT_INSTALL_LIBS] QtCore.prl
74}
75!isEmpty(PRL) {
76        include($$join(PRL, "/"))
77        contains(QMAKE_PRL_CONFIG, static) {
78                # We "embed" SVG icon support on static build
79                DEFINES += STATIC_BUILD
80#               !nosvg:QTPLUGIN += qsvgicon
81        }
82}
83
84CONFIG(release, debug|release) {
85        OBJECTS_DIR = release
86        D =
87} else {
88        OBJECTS_DIR = debug
89        DEFINES += DEBUG
90#       CONFIG += console
91        D = d
92}
93DESTDIR = bin
94TARGET = tspsg$${D}
95
96# Saving all intermediate files to tmp directory.
97MOC_DIR = tmp
98RCC_DIR = tmp
99UI_DIR = tmp
100
101# Include 3rd party libraries
102!handheld {
103        include(src/3rdparty/qttoolbardialog-2.2_1-opensource/src/qttoolbardialog.pri)
104}
105
106win32:LIBS += -lole32
107
108# Include file(s)
109include(tspsg.pri)
110
111# Installation and deployment rules
112include(install.pri)
Note: See TracBrowser for help on using the repository browser.