source: tspsg/tspsg.pri @ aa64ad4082

0.1.4.170-beta2-bb10
Last change on this file since aa64ad4082 was aa64ad4082, checked in by Oleksii Serdiuk, 11 years ago

Added proxy style and stylesheet to fix some UI issues on BlackBerry?.

Also, removed style selection option because most styles have UI issues
and removed About Qt menu item because About Qt dialog is too big.

  • Property mode set to 100644
File size: 1.4 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#Header files
14HEADERS += src/globals.h \
15    src/version.h \
16    src/os.h \
17    src/defaults.h \
18    src/mainwindow.h \
19    src/settingsdialog.h \
20    src/tspmodel.h \
21    src/tspsolver.h \
22    src/resource.h \
23    src/qtwin.h
24
25#Source files
26SOURCES += src/main.cpp \
27    src/globals.cpp \
28    src/mainwindow.cpp \
29    src/settingsdialog.cpp \
30    src/tspmodel.cpp \
31    src/tspsolver.cpp \
32    src/qtwin.cpp
33
34blackberry {
35    HEADERS += src/bb10proxystyle.h
36    SOURCES += src/bb10proxystyle.cpp
37}
38
39#Forms
40FORMS += ui/mainwindow.ui \
41    ui/settingsdialog.ui
42
43#Resource file(s)
44RESOURCES += resources/common.qrc \
45    l10n/l10n.qrc
46
47handheld {
48    RESOURCES += resources/handheld.qrc
49} else {
50    RESOURCES += resources/desktop.qrc
51}
52
53win* {
54    RC_FILE = resources/tspsg.rc
55}
56
57#Translations
58CODECFORTR = UTF-8
59TRANSLATIONS += l10n/template.ts \
60    l10n/tspsg_en.ts \
61    l10n/tspsg_ru.ts \
62    l10n/tspsg_uk.ts
63
64blackberry {
65    OTHER_FILES += \
66        bar-descriptor.xml
67}
68
69!nopch {
70    # Precompiled header
71    PRECOMPILED_HEADER = src/pch.h
72}
73
74_t_t_l_ {
75    DEFINES += _T_T_L_
76    HEADERS += src/_.h
77}
Note: See TracBrowser for help on using the repository browser.