51 lines
1.3 KiB
Prolog
51 lines
1.3 KiB
Prolog
QT += core gui httpserver
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
CONFIG += c++17
|
|
|
|
# You can make your code fail to compile if it uses deprecated APIs.
|
|
# In order to do so, uncomment the following line.
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
SOURCES += \
|
|
apiclient.cpp \
|
|
main.cpp \
|
|
mainwindow.cpp \
|
|
models/baseentity.cpp \
|
|
models/department.cpp \
|
|
models/device.cpp \
|
|
models/devicemodel.cpp \
|
|
models/devicestructureelement.cpp \
|
|
models/devicetype.cpp \
|
|
models/filterparams.cpp \
|
|
models/location.cpp \
|
|
models/manufacturer.cpp \
|
|
utils/buttonhoverwatcher.cpp
|
|
|
|
HEADERS += \
|
|
apiclient.h \
|
|
mainwindow.h \
|
|
models/baseentity.h \
|
|
models/department.h \
|
|
models/device.h \
|
|
models/devicemodel.h \
|
|
models/devicestructureelement.h \
|
|
models/devicetype.h \
|
|
models/filterparams.h \
|
|
models/location.h \
|
|
models/manufacturer.h \
|
|
models/types.h \
|
|
utils/buttonhoverwatcher.h
|
|
|
|
FORMS += \
|
|
mainwindow.ui
|
|
|
|
# Default rules for deployment.
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
!isEmpty(target.path): INSTALLS += target
|
|
|
|
RESOURCES += \
|
|
resources/resources.qrc
|