Changeset d8a3826f87 in tspsg for tspsg.pro


Ignore:
Timestamp:
Mar 16, 2011, 1:03:57 AM (13 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
d97db6d321
Parents:
5631fb4d50
git-author:
Oleksii Serdiuk <contacts@…> (03/16/11 01:03:57)
git-committer:
Oleksii Serdiuk <contacts@…> (06/29/12 19:45:58)
Message:

Converted tabs to spaces in project files...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tspsg.pro

    r5631fb4d50 rd8a3826f87  
    1212
    1313!nosvg {
    14         QT += svg
     14    QT += svg
    1515} else {
    16         DEFINES += NOSVG
     16    DEFINES += NOSVG
    1717}
    1818
    1919wincewm*|symbian|maemo*|simulator {
    20         CONFIG += handheld
     20    CONFIG += handheld
    2121}
    2222
     
    2929QMAKE_TARGET_PRODUCT = TSP Solver and Generator
    3030QMAKE_TARGET_DESCRIPTION = TSPSG: TSP Solver and Generator
    31 QMAKE_TARGET_COPYRIGHT = Copyright © 200-20110 Oleksii "Lёppa" Serdiuk <contacts[at]oleksii[dot]name>
     31QMAKE_TARGET_COPYRIGHT = Copyright © 2010-2011 Oleksii "Lёppa" Serdiuk <contacts[at]oleksii[dot]name>
    3232
    3333# Versioning
     
    4343#REVISION = 145
    4444isEmpty(REVISION) {
    45         REVISION = $$system(svnversion)
     45    REVISION = $$system(svnversion)
    4646}
    4747isEmpty(REVISION)|isEqual(REVISION,exported) {
    48         REVISION = 0
     48    REVISION = 0
    4949} else {
    50         REVISION = $$replace(REVISION,":","")
    51         REVISION = $$replace(REVISION,"M","")
     50    REVISION = $$replace(REVISION,":","")
     51    REVISION = $$replace(REVISION,"M","")
    5252}
    5353SHORT_VERSION = $$sprintf("%1.%2",$$BUILD_VERSION_MAJOR,$$BUILD_VERSION_MINOR)
    5454win32-msvc*|wincewm* {
    55         VERSION = $$SHORT_VERSION
     55    VERSION = $$SHORT_VERSION
    5656} else {
    57         VERSION = $$sprintf("%1.%2",$$SHORT_VERSION,$$BUILD_RELEASE)
     57    VERSION = $$sprintf("%1.%2",$$SHORT_VERSION,$$BUILD_RELEASE)
    5858}
    5959
    6060DEFINES += BUILD_VERSION_MAJOR=$$BUILD_VERSION_MAJOR \
    61         BUILD_VERSION_MINOR=$$BUILD_VERSION_MINOR \
    62         BUILD_RELEASE=$$BUILD_RELEASE \
    63         BUILD_NUMBER=$$REVISION
     61    BUILD_VERSION_MINOR=$$BUILD_VERSION_MINOR \
     62    BUILD_RELEASE=$$BUILD_RELEASE \
     63    BUILD_NUMBER=$$REVISION
    6464
    6565# A hack to determine whether we have static or dynamic Qt build
    6666macx {
    67         PRL = $$[QT_INSTALL_LIBS] QtCore.framework QtCore.prl
     67    PRL = $$[QT_INSTALL_LIBS] QtCore.framework QtCore.prl
    6868} else:symbian|maemo* {
    69         # Nothing here
     69    # Nothing here
    7070} else:unix {
    71         PRL = $$[QT_INSTALL_LIBS] libQtCore.prl
     71    PRL = $$[QT_INSTALL_LIBS] libQtCore.prl
    7272} else {
    73         PRL = $$[QT_INSTALL_LIBS] QtCore.prl
     73    PRL = $$[QT_INSTALL_LIBS] QtCore.prl
    7474}
    7575!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
     76    include($$join(PRL, "/"))
     77    contains(QMAKE_PRL_CONFIG, static) {
     78        # We "embed" SVG icon support on static build
     79        DEFINES += STATIC_BUILD
    8080#               !nosvg:QTPLUGIN += qsvgicon
    81         }
     81    }
    8282}
    8383
    8484CONFIG(release, debug|release) {
    85         OBJECTS_DIR = release
    86         D =
     85    OBJECTS_DIR = release
     86    D =
    8787} else {
    88         OBJECTS_DIR = debug
    89         DEFINES += DEBUG
     88    OBJECTS_DIR = debug
     89    DEFINES += DEBUG
    9090#       CONFIG += console
    91         D = d
     91    D = d
    9292}
    9393DESTDIR = bin
     
    101101# Include 3rd party libraries
    102102!handheld {
    103         include(src/3rdparty/qttoolbardialog-2.2_1-opensource/src/qttoolbardialog.pri)
     103    include(src/3rdparty/qttoolbardialog-2.2_1-opensource/src/qttoolbardialog.pri)
    104104}
    105105
Note: See TracChangeset for help on using the changeset viewer.