-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpq7.pro
executable file
·57 lines (46 loc) · 1.02 KB
/
pq7.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
#-------------------------------------------------
#
# Project created by QtCreator 2012-09-16T01:09:58
#
#-------------------------------------------------
# added by xeno
MYJSONLIB = "$${_PRO_FILE_PWD_}/jsoncpp-src-0.5.0"
win32 {
LIBS += "$${MYJSONLIB}/libs/mingw/*.a"
}
unix {
LIBS += "$${MYJSONLIB}/libs/linux-gcc*/*.a"
}
INCLUDEPATH += "$${MYJSONLIB}/include"
QT += core gui
# added by xeno: QT 5.x.x compile support
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = pq7
TEMPLATE = app
# added by xeno
VERSION = 7.0.0
SOURCES += main.cpp\
mainwindow.cpp \
entity.cpp \
pq7_config.cpp \
c_spell.cpp \
c_item.cpp \
c_monster.cpp \
c_world.cpp \
dialog_opening.cpp \
dialog_charsheet.cpp
HEADERS += mainwindow.h \
entity.h \
pq7_config.h \
c_spell.h \
c_item.h \
c_monster.h \
c_world.h \
dialog_opening.h \
dialog_charsheet.h
FORMS += mainwindow.ui \
dialog_opening.ui \
dialog_charsheet.ui
OTHER_FILES += \
README \
INSTALL