Rev 89 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
89 | rm5248 | 1 | #------------------------------------------------- |
2 | # |
||
3 | # Project created by QtCreator 2014-11-02T11:22:16 |
||
4 | # |
||
5 | #------------------------------------------------- |
||
6 | |||
7 | QT += core gui |
||
8 | |||
9 | greaterThan(QT_MAJOR_VERSION, 4): QT += widgets |
||
10 | |||
11 | TARGET = TrainDatabase |
||
12 | TEMPLATE = app |
||
13 | |||
14 | |||
15 | SOURCES += main.cpp\ |
||
16 | traindb.cpp\ |
||
17 | sqlite3.c \ |
||
18 | aboutdialog.cpp \ |
||
19 | traintablemodel.cpp \ |
||
20 | dbaccess.cpp \ |
||
21 | dbexception.cpp \ |
||
22 | trainrecord.cpp |
||
23 | |||
24 | |||
25 | HEADERS += traindb.h sqlite3.h sqlite3ext.h \ |
||
26 | aboutdialog.h \ |
||
27 | traintablemodel.h \ |
||
28 | dbaccess.h \ |
||
29 | dbexception.h \ |
||
30 | trainrecord.h |
||
31 | |||
32 | FORMS += traindb.ui \ |
||
33 | aboutdialog.ui |
||
91 | rm5248 | 34 | |
35 | #need the dynamic loader for some reason |
||
36 | unix:LIBS += -ldl |