-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathFusionClient.pro
More file actions
66 lines (52 loc) · 1.39 KB
/
FusionClient.pro
File metadata and controls
66 lines (52 loc) · 1.39 KB
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
#-------------------------------------------------
#
# Project created by QtCreator 2015-05-01T19:12:51
#
#-------------------------------------------------
QT += core gui sql
QT += network
QMAKE_CXXFLAGS += -std=c++11
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = FusionClient
TEMPLATE = app
TRANSLATIONS = FusionLang_de.ts \
FusionLang_no.ts \
FusionLang_pl.ts \
FusionLang_es.ts
RC_ICONS = gfx/Icon.ico
SOURCES += main.cpp\
mainwindow.cpp \
addgamedialog.cpp \
fgamewidget.cpp \
gameinfodialog.cpp \
general.cpp \
gamedbartselectordialog.cpp \
fsettingsdialog.cpp
HEADERS += mainwindow.h \
addgamedialog.h \
fgamewidget.h \
gameinfodialog.h \
general.h \
gamedbartselectordialog.h \
fsettingsdialog.h
FORMS += mainwindow.ui \
addgamedialog.ui \
fgamewidget.ui \
gameinfodialog.ui \
gamedbartselectordialog.ui \
fsettingsdialog.ui
unix|win32: LIBS += -lLibFusion
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../LibFusion/release/ -lLibFusion
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../LibFusion/debug/ -lLibFusion
else:unix: LIBS += -L$$PWD/../LibFusion/ -lLibFusion
INCLUDEPATH += $$PWD/../LibFusion
DEPENDPATH += $$PWD/../LibFusion
unix {
target.path = /usr/bin
INSTALLS += target
}
DISTFILES += \
stylesheet.qss \
dbUpdate
RESOURCES += \
res.qrc