-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathQtAsyncSql.pro
More file actions
37 lines (27 loc) · 794 Bytes
/
QtAsyncSql.pro
File metadata and controls
37 lines (27 loc) · 794 Bytes
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
#-------------------------------------------------
#
# Project created by QtCreator 2016-02-16T07:23:31
#
#-------------------------------------------------
QT += core gui sql
CONFIG += c++11
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = QtThreadedAsyncSql
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
Database/AsyncQuery.cpp \
Database/AsyncQueryResult.cpp \
Database/ConnectionManager.cpp \
Database/AsynqQueryModel.cpp
HEADERS += mainwindow.h \
Database/AsyncQuery.h \
Database/AsyncQueryResult.h \
Database/ConnectionManager.h \
Database/AsynqQueryModel.h
FORMS += mainwindow.ui
copydata.commands = $(COPY_DIR) $$PWD/data $$OUT_PWD
first.depends = $(first) copydata
export(first.depends)
export(copydata.commands)
QMAKE_EXTRA_TARGETS += first copydata