-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBilling-System.pro
More file actions
34 lines (27 loc) · 844 Bytes
/
Billing-System.pro
File metadata and controls
34 lines (27 loc) · 844 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
QT += core gui sql
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++17
# Include paths for header files
INCLUDEPATH += src \
src/mainwindow \
src/adminwindow
# Source files
SOURCES += \
src/main.cpp \
src/mainwindow/mainwindow.cpp \
src/adminwindow/adminwindow.cpp src/adminwindow/logindialog.cpp
# Header files
HEADERS += \
src/mainwindow/mainwindow.h \
src/adminwindow/adminwindow.h src/adminwindow/logindialog.h
# UI forms
FORMS += \
src/mainwindow/mainwindow.ui \
src/adminwindow/adminwindow.ui src/adminwindow/logindialog.ui
# Qt resources
RESOURCES += \
resources/resources.qrc
# Default rules for deployment
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target