###################################################################### # # TSPSG: TSP Solver and Generator # Copyright (C) 2007-2010 Lёppa # # $Id$ # $URL$ # # This file is part of TSPSG. # ###################################################################### QT += svg TEMPLATE = app TARGET = tspsg DEPENDPATH += . INCLUDEPATH += . # Versioning BUILD_VERSION_MAJOR = 0 BUILD_VERSION_MINOR = 1 BUILD_RELEASE = 2 # This one is only defined on releases #DEFINES += TSPSG_RELEASE_BUILD REVISION = $$system(svnversion) REVISION = $$replace(REVISION,"M","") VERSION = $$sprintf("%1.%2.%3",$$BUILD_VERSION_MAJOR,$$BUILD_VERSION_MINOR,$$BUILD_RELEASE) DEFINES += BUILD_VERSION_MAJOR=$$BUILD_VERSION_MAJOR \ BUILD_VERSION_MINOR=$$BUILD_VERSION_MINOR \ BUILD_RELEASE=$$BUILD_RELEASE \ BUILD_NUMBER=$$REVISION # A hack to determine whether we have static or dynamic Qt build unix:!symbian { PRL = $$[QT_INSTALL_LIBS] libQtCore.prl } else:unix { PRL = $$[QT_INSTALL_LIBS] QtCore.prl } include($$join(PRL, "/")) contains(QMAKE_PRL_CONFIG, static) { # We "embed" SVG and JPEG support on static build QTPLUGIN += qjpeg qsvg DEFINES += STATIC_BUILD } CONFIG(release, debug|release) { OBJECTS_DIR = release DESTDIR = release } else { OBJECTS_DIR = debug DESTDIR = debug DEFINES += DEBUG } # Saving all intermediate files to tmp directory. MOC_DIR = ./tmp RCC_DIR = ./tmp UI_DIR = ./tmp # Include file(s) include(tspsg.pri) # Installation and deployment # Common rules #share.files = l10n.files = l10n/*.qm docs.files = COPYING README INSTALLS += target l10n share docs # For *nix: # - executable goes to /usr/bin # - COPYING and README go to /usr/share/tspsg # - translations go to /usr/share/tspsg/l10n # - docs (none, yet) go to /usr/share/doc/tspsg unix:!symbian { PREFIX = /usr CONFIG(release, debug|release) { DEFINES += PATH_L10N=\\\"$$PREFIX/share/tspsg/l10n\\\" DEFINES += PATH_DOCS=\\\"$$PREFIX/share/tspsg/docs\\\" } target.path = $$PREFIX/bin share.path = $$PREFIX/share/tspsg l10n.path = $$PREFIX/share/tspsg/l10n docs.path = $$PREFIX/share/doc/tspsg-$$VERSION apps.path = $$PREFIX/share/applications/ apps.files = resources/tspsg.desktop icon.path = $$PREFIX/share/pixmaps icon.files = resources/tspsg.png INSTALLS += apps icon } # TODO: MacOSX # For win32: everything goes to "C:\Program Files\tspsg" and subfolders. win32 { PREFIX = "C:\Program Files" } # For wince: we are deploying to \Storage Card\Program Files\tspsg. wince { PREFIX = "\Storage Card\Program Files" DEPLOYMENT += target share l10n docs } # win32 and wince common win* { target.path = "$$PREFIX\tspsg" share.path = "$$PREFIX\tspsg" l10n.path = "$$PREFIX\tspsg\l10n" docs.path = "$$PREFIX\tspsg" RC_FILE = resources/tspsg.rc } # Symbian symbian { l10n.path = l10n docs.pkg_prerules = \ "\"README\" - \"\", FILETEXT, TEXTCONTINUE" \ "\"COPYING\" - \"\", FILETEXT, TEXTEXIT" DEPLOYMENT += share l10n docs ICON = resources/tspsg.svg appinfo = \ "$$LITERAL_HASH{\"TSPSG\"},(0xEb9dce0e),0,1,2" vendorinfo = \ "%{\"l-homes.org\"}" \ ":\"l-homes.org\"" default_deployment.pkg_prerules = appinfo vendorinfo DEPLOYMENT.installer_header = "$${LITERAL_HASH}{\"TSPSG Installer\"},(0xA000D7CE),1,0,0" }