-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftBot.pro
79 lines (68 loc) · 2.02 KB
/
SwiftBot.pro
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
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = SwiftBot
TEMPLATE = app
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
INCLUDEPATH += $$PWD/include
SOURCES += \
source/main.cpp \
source/mainwindow.cpp \
source/quickactionmenu.cpp \
source/characterdata.cpp \
source/characterdelegate.cpp \
source/characterview.cpp \
source/details/console.cpp \
source/details/character.cpp \
source/details/inventory.cpp \
source/details/map.cpp \
source/details/fight.cpp \
source/details/settings.cpp \
source/details/flood.cpp \
source/details/script.cpp \
source/details/stats.cpp \
source/connectionform.cpp \
source/accountmanager.cpp
HEADERS += \
include/mainwindow.hh \
include/quickactionmenu.hh \
include/characterdata.hh \
include/characterdelegate.hh \
include/characterview.hh \
include/details/console.hh \
include/details/character.hh \
include/details/inventory.hh \
include/details/map.hh \
include/details/fight.hh \
include/details/settings.hh \
include/details/flood.hh \
include/details/script.hh \
include/details/stats.hh \
include/connectionform.hh \
include/accountmanager.hh
FORMS += \
form/mainwindow.ui \
form/quickactionmenu.ui \
form/characterview.ui \
form/details/console.ui \
form/details/character.ui \
form/details/inventory.ui \
form/details/map.ui \
form/details/fight.ui \
form/details/settings.ui \
form/details/flood.ui \
form/details/script.ui \
form/details/stats.ui \
form/connectionform.ui \
form/accountmanager.ui
RESOURCES += \
translations/translations.qrc\
resources/icons.qrc\
resources/stats.qrc\
resources/style.qrc
LANGUAGES = fr\
en
defineReplace(prependAll) {
for(a,$$1):result += $$2$${a}$$3
return($$result)
}
TRANSLATIONS = $$prependAll(LANGUAGES, $$PWD/translations/swiftbot_, .ts)