-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtspsg.pri
81 lines (70 loc) · 1.56 KB
/
tspsg.pri
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
######################################################################
#
# TSPSG: TSP Solver and Generator
# Copyright (C) 2007-2016 Oleksii Serdiuk <contacts[at]oleksii[dot]name>
#
# $Id: $Format:%h %ai %an$ $
# $URL: http://tspsg.info/ $
#
# This file is part of TSPSG.
#
######################################################################
#Header files
HEADERS += src/globals.h \
src/version.h \
src/os.h \
src/defaults.h \
src/mainwindow.h \
src/settingsdialog.h \
src/tspmodel.h \
src/tspsolver.h \
src/resource.h \
src/qtwin.h
#Source files
SOURCES += src/main.cpp \
src/globals.cpp \
src/mainwindow.cpp \
src/settingsdialog.cpp \
src/tspmodel.cpp \
src/tspsolver.cpp \
src/qtwin.cpp
blackberry {
HEADERS += src/bb10proxystyle.h
SOURCES += src/bb10proxystyle.cpp
}
#Forms
FORMS += ui/mainwindow.ui \
ui/settingsdialog.ui
#Resource file(s)
RESOURCES += resources/common.qrc \
l10n/l10n.qrc
blackberry {
RESOURCES += resources/desktop.qrc
} else:handheld {
RESOURCES += resources/handheld.qrc
} else {
RESOURCES += resources/desktop.qrc
}
win* {
# We add manifest to resources manually
CONFIG -= embed_manifest_exe
RC_FILE = resources/tspsg.rc
}
#Translations
CODECFORTR = UTF-8
TRANSLATIONS += l10n/template.ts \
l10n/tspsg_en.ts \
l10n/tspsg_ru.ts \
l10n/tspsg_uk.ts
blackberry {
OTHER_FILES += \
bar-descriptor.xml
}
!nopch {
# Precompiled header
PRECOMPILED_HEADER = src/pch.h
}
_t_t_l_ {
DEFINES += _T_T_L_
HEADERS += src/_.h
}