1
|
#-------------------------------------------------
|
2
|
#
|
3
|
# Project created by QtCreator 2018-09-07T07:31:10
|
4
|
#
|
5
|
#-------------------------------------------------
|
6
|
|
7
|
QT += core gui widgets sql
|
8
|
|
9
|
TARGET = db_browser
|
10
|
TEMPLATE = app
|
11
|
|
12
|
# The following define makes your compiler emit warnings if you use
|
13
|
# any feature of Qt which has been marked as deprecated (the exact warnings
|
14
|
# depend on your compiler). Please consult the documentation of the
|
15
|
# deprecated API in order to know how to port your code away from it.
|
16
|
DEFINES += QT_DEPRECATED_WARNINGS
|
17
|
|
18
|
# You can also make your code fail to compile if you use deprecated APIs.
|
19
|
# In order to do so, uncomment the following line.
|
20
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
21
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
22
|
|
23
|
include(libQsLog/QsLog.pri)
|
24
|
|
25
|
CONFIG += c++11
|
26
|
|
27
|
SOURCES += \
|
28
|
main.cpp \
|
29
|
dbbrowser.cpp \
|
30
|
dbaccess.cpp \
|
31
|
infodialog.cpp \
|
32
|
../cv_stroj_3d/curvedialog.cpp
|
33
|
|
34
|
HEADERS += \
|
35
|
dbbrowser.h \
|
36
|
dbaccess.h \
|
37
|
infodialog.h \
|
38
|
../cv_stroj_3d/curvedialog.h
|
39
|
|
40
|
FORMS += \
|
41
|
dbbrowser.ui \
|
42
|
infodialog.ui \
|
43
|
../cv_stroj_3d/curvedialog.ui
|
44
|
|
45
|
TRANSLATIONS += lang\db_browser_cs.ts
|
46
|
|
47
|
# Default rules for deployment.
|
48
|
qnx: target.path = /tmp/$${TARGET}/bin
|
49
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
50
|
!isEmpty(target.path): INSTALLS += target
|
51
|
|
52
|
RESOURCES += \
|
53
|
../cv_stroj_3d/resources.qrc
|