2020-11-16 00:31:28 +01:00
|
|
|
TARGET = linbo_gui
|
|
|
|
DEPENDPATH += .
|
|
|
|
INCLUDEPATH += .
|
|
|
|
CFLAGS += -DQWS -static
|
|
|
|
QT += \
|
|
|
|
qt3support \
|
|
|
|
widgets \
|
2020-11-19 14:39:32 +01:00
|
|
|
widgets \
|
|
|
|
widgets \
|
|
|
|
widgets \
|
2020-11-16 00:31:28 +01:00
|
|
|
svg
|
|
|
|
QMAKE_POST_LINK=strip $(TARGET)
|
|
|
|
|
|
|
|
# deployment
|
|
|
|
target.path = /usr/bin
|
|
|
|
!isEmpty(target.path): INSTALLS += target
|
|
|
|
|
|
|
|
INCLUDEPATH += \
|
|
|
|
headers/ \
|
2020-11-16 18:01:03 +01:00
|
|
|
headers/backend \
|
2020-11-16 00:31:28 +01:00
|
|
|
headers/legacy
|
|
|
|
|
|
|
|
# Input
|
|
|
|
HEADERS += \
|
2020-11-16 18:01:03 +01:00
|
|
|
headers/backend/linboconfig.h \
|
|
|
|
headers/backend/linbodiskpartition.h \
|
|
|
|
headers/backend/linboimage.h \
|
|
|
|
headers/backend/linboos.h \
|
2020-11-16 00:31:28 +01:00
|
|
|
headers/legacy/image_description.hh \
|
|
|
|
headers/legacy/linboConsoleImpl.hh \
|
|
|
|
headers/legacy/linboCounterImpl.hh \
|
|
|
|
headers/legacy/linboGUIImpl.hh \
|
|
|
|
headers/legacy/linboImageSelectorImpl.hh \
|
|
|
|
headers/legacy/linboImageUploadImpl.hh \
|
|
|
|
headers/legacy/linboInfoBrowserImpl.hh \
|
|
|
|
headers/legacy/linboInputBoxImpl.hh \
|
|
|
|
headers/legacy/linboMsgImpl.hh \
|
|
|
|
headers/legacy/linboMulticastBoxImpl.hh \
|
|
|
|
headers/legacy/linboPasswordBoxImpl.hh \
|
|
|
|
headers/legacy/linboProgressImpl.hh \
|
|
|
|
headers/legacy/linboPushButton.hh \
|
|
|
|
headers/legacy/linboLogConsole.hh \
|
|
|
|
headers/legacy/linboRegisterBoxImpl.hh \
|
|
|
|
headers/legacy/linboYesNoImpl.hh \
|
2020-11-16 18:01:03 +01:00
|
|
|
headers/backend/linbobackend.h \
|
2020-11-16 00:31:28 +01:00
|
|
|
headers/linbogui.h \
|
|
|
|
headers/linboosselectbutton.h \
|
2020-11-19 14:39:32 +01:00
|
|
|
headers/linboosselectionrow.h \
|
|
|
|
headers/linbostartactions.h \
|
2020-11-16 00:31:28 +01:00
|
|
|
headers/linbostartpage.h \
|
2020-11-19 14:39:32 +01:00
|
|
|
headers/qmodernprogressbar.h \
|
|
|
|
headers/qmodernpushbutton.h \
|
|
|
|
headers/qmodernpushbuttonoverlay.h \
|
|
|
|
headers/qmodernstackedwidget.h
|
2020-11-16 00:31:28 +01:00
|
|
|
|
|
|
|
SOURCES += \
|
2020-11-16 18:01:03 +01:00
|
|
|
sources/backend/linboconfig.cpp \
|
|
|
|
sources/backend/linbodiskpartition.cpp \
|
|
|
|
sources/backend/linboimage.cpp \
|
|
|
|
sources/backend/linboos.cpp \
|
2020-11-16 00:31:28 +01:00
|
|
|
sources/legacy/image_description.cc \
|
|
|
|
sources/legacy/linboConsoleImpl.cc \
|
|
|
|
sources/legacy/linboCounterImpl.cc \
|
|
|
|
sources/legacy/linboGUIImpl.cc \
|
2020-11-16 18:01:03 +01:00
|
|
|
sources/legacy/linboGUIImplTmp.cpp \
|
2020-11-16 00:31:28 +01:00
|
|
|
sources/legacy/linboImageSelectorImpl.cc \
|
|
|
|
sources/legacy/linboImageUploadImpl.cc \
|
|
|
|
sources/legacy/linboInfoBrowserImpl.cc \
|
|
|
|
sources/legacy/linboInputBoxImpl.cc \
|
|
|
|
sources/legacy/linboMsgImpl.cc \
|
|
|
|
sources/legacy/linboMulticastBoxImpl.cc \
|
|
|
|
sources/legacy/linboPasswordBoxImpl.cc \
|
|
|
|
sources/legacy/linboProgressImpl.cc \
|
|
|
|
sources/legacy/linboPushButton.cc \
|
|
|
|
sources/legacy/linboLogConsole.cc \
|
|
|
|
sources/legacy/linboRegisterBoxImpl.cc \
|
|
|
|
sources/legacy/linboYesNoImpl.cc \
|
2020-11-16 18:01:03 +01:00
|
|
|
sources/backend/linbobackend.cpp \
|
2020-11-16 00:31:28 +01:00
|
|
|
sources/linbogui.cpp \
|
|
|
|
sources/linboosselectbutton.cpp \
|
2020-11-19 14:39:32 +01:00
|
|
|
sources/linboosselectionrow.cpp \
|
|
|
|
sources/linbostartactions.cpp \
|
2020-11-16 00:31:28 +01:00
|
|
|
sources/linbostartpage.cpp \
|
|
|
|
sources/main.cpp \
|
2020-11-19 14:39:32 +01:00
|
|
|
sources/qmodernprogressbar.cpp \
|
|
|
|
sources/qmodernpushbutton.cpp \
|
|
|
|
sources/qmodernpushbuttonoverlay.cpp \
|
|
|
|
sources/qmodernstackedwidget.cpp
|
2020-11-16 00:31:28 +01:00
|
|
|
|
|
|
|
FORMS += \
|
|
|
|
forms/linboConsole.ui \
|
|
|
|
forms/linboCounter.ui \
|
|
|
|
forms/linboGUI.ui \
|
|
|
|
forms/linboImageSelector.ui \
|
|
|
|
forms/linboImageUpload.ui \
|
|
|
|
forms/linboInfoBrowser.ui \
|
|
|
|
forms/linboInputBox.ui \
|
|
|
|
forms/linboMovie.ui \
|
|
|
|
forms/linboMsg.ui \
|
|
|
|
forms/linboMulticastBox.ui \
|
|
|
|
forms/linboPasswordBox.ui \
|
|
|
|
forms/linboProgress.ui \
|
|
|
|
forms/linboRegisterBox.ui \
|
|
|
|
forms/linboYesNo.ui
|
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
resources/linbo.qrc
|