source: tspsg/tspsg.pro @ 131c5fc3ba

0.1.3.145-beta1-symbian0.1.4.170-beta2-bb10appveyorimgbotreadme
Last change on this file since 131c5fc3ba was 131c5fc3ba, checked in by Oleksii Serdiuk, 14 years ago

+ Added more fonts to font-family css property on export.

  • Graph was slightly cut on export.
  • Property mode set to 100644
File size: 2.2 KB
Line 
1######################################################################
2#
3#  TSPSG: TSP Solver and Generator
4#  Copyright (C) 2007-2010 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
19TEMPLATE = app
20
21# QMAKE_MAC_SDK = /Developer/SDKs/MacOSX10.5.sdk
22
23# Versioning
24BUILD_VERSION_MAJOR = 0
25BUILD_VERSION_MINOR = 1
26BUILD_RELEASE = 3
27
28# These are only defined on releases
29#DEFINES += TSPSG_RELEASE_BUILD
30#!symbian {
31#       DEFINES += BUILD_STATUS="\"(alpha 2)\""
32#} else {
33#       # Symbian doesn't handle spaces in defines well
34#       DEFINES += BUILD_STATUS="(alpha2)"
35#}
36
37#REVISION = 100
38REVISION = $$system(svnversion)
39REVISION = $$replace(REVISION,":","")
40REVISION = $$replace(REVISION,"M","")
41win32-msvc*|wincewm* {
42        VERSION = $$sprintf("%1.%2",$$BUILD_VERSION_MAJOR,$$BUILD_VERSION_MINOR)
43} else {
44        VERSION = $$sprintf("%1.%2.%3.%4",$$BUILD_VERSION_MAJOR,$$BUILD_VERSION_MINOR,$$BUILD_RELEASE,$$REVISION)
45}
46
47DEFINES += BUILD_VERSION_MAJOR=$$BUILD_VERSION_MAJOR \
48        BUILD_VERSION_MINOR=$$BUILD_VERSION_MINOR \
49        BUILD_RELEASE=$$BUILD_RELEASE \
50        BUILD_NUMBER=$$REVISION
51
52# A hack to determine whether we have static or dynamic Qt build
53macx {
54        PRL = $$[QT_INSTALL_LIBS] QtCore.framework QtCore.prl
55} else:symbian {
56        PRL = $$[QT_INSTALL_LIBS] QtCore.prl
57} else:unix {
58        PRL = $$[QT_INSTALL_LIBS] libQtCore.prl
59} else {
60        PRL = $$[QT_INSTALL_LIBS] QtCore.prl
61}
62include($$join(PRL, "/"))
63contains(QMAKE_PRL_CONFIG, static) {
64        # We "embed" SVG icon, JPEG and TIFF support on static build
65        DEFINES += STATIC_BUILD
66#       QTPLUGIN += qjpeg qtiff
67#       !nosvg:QTPLUGIN += qsvgicon
68}
69
70CONFIG(release, debug|release) {
71        OBJECTS_DIR = release
72        D =
73} else {
74        OBJECTS_DIR = debug
75        DEFINES += DEBUG
76#       CONFIG += console
77        D = d
78}
79DESTDIR = bin
80TARGET = tspsg$${D}
81
82# Saving all intermediate files to tmp directory.
83MOC_DIR = tmp
84RCC_DIR = tmp
85UI_DIR = tmp
86
87# Include 3rd party libraries
88!wincewm*:!symbian {
89        include(src/3rdparty/qttoolbardialog-2.2_1-opensource/src/qttoolbardialog.pri)
90}
91
92win32:LIBS += -lole32
93
94# Include file(s)
95include(tspsg.pri)
96
97# Installation and deployment
98include(install.pri)
Note: See TracBrowser for help on using the repository browser.