mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-26 17:54:32 +00:00
26 lines
538 B
Prolog
26 lines
538 B
Prolog
requires(qtConfig(accessibility))
|
|
CONFIG += release
|
|
|
|
TEMPLATE = app
|
|
TARGET = quicknanobrowser
|
|
|
|
HEADERS = utils.h
|
|
SOURCES = main.cpp
|
|
|
|
OTHER_FILES += ApplicationRoot.qml \
|
|
BrowserDialog.qml \
|
|
BrowserWindow.qml \
|
|
DownloadView.qml \
|
|
FullScreenNotification.qml
|
|
|
|
RESOURCES += resources.qrc
|
|
|
|
QT += qml quick webengine
|
|
|
|
qtHaveModule(widgets) {
|
|
QT += widgets # QApplication is required to get native styling with QtQuickControls
|
|
}
|
|
|
|
|
|
DESTDIR="$$PWD/../build"
|