forked from anak10thn/ignsdk-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ign.pro
72 lines (63 loc) · 1.76 KB
/
ign.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
#-------------------------------------------------
#
# Project created by QtCreator 2013-02-03T23:13:36
#
#-------------------------------------------------
QT += network core gui webkit sql
TARGET = ignsdk
TEMPLATE = app
SOURCES += main.cpp\
ign.cpp \
fs.cpp \
igndownload.cpp \
ignsql.cpp \
ignnetwork.cpp \
ignsystem.cpp
HEADERS += ign.h \
fs.h \
igndownload.h \
ignsql.h \
ignnetwork.h \
ignsystem.h
OTHER_FILES += \
js/jquery.js \
js/ign.js \
examples/index.html \
js/bootstrap.min.js \
js/bootstrap.js \
img/glyphicons-halflings.png \
img/glyphicons-halflings-white.png \
css/bootstrap.min.css \
css/bootstrap.css \
css/bootstrap-responsive.min.css \
css/bootstrap-responsive.css \
test/bootstrap/index.html \
test/widget.ign/index.html \
test/bootstrap.ign/index.html \
README.md \
css/ign.css \
js/skulpt.js \
js/builtin.js \
platform/ARCH/PKGBUILD \
platform/SPECS/ignsdk.spec \
platform/debian/README.Debian \
platform/debian/ignsdk-debian.dirs \
platform/debian/ignsdk-debian-example.install \
platform/debian/docs \
platform/debian/copyright \
platform/debian/control \
platform/debian/compat \
platform/debian/changelog \
platform/debian/rules \
platform/debian/source/format \
platform/debian/patches/series \
platform/debian/patches/buildtarget.diff \
js/include.js
RESOURCES += \
ign.qrc
LIBS += -L/usr/lib -lqjson
win32:CONFIG(release, debug|release): LIBS += -L/lib/mysql/release/ -lmysqlclient_r
else:win32:CONFIG(debug, debug|release): LIBS += -L/lib/mysql/debug/ -lmysqlclient_r
else:unix: LIBS += -L/lib/mysql/ -lmysqlclient_r
INCLUDEPATH += /lib/mysql
DEPENDPATH += /lib/mysql