ALTMediaWriter/mediawriter.pro
Martin Briza 238f2e01fd Basic offline disk detection
Not shown in the UI because the virtual methods are not called (?)
2016-05-31 20:00:50 +02:00

32 lines
530 B
Prolog

TEMPLATE = app
QT += qml quick widgets network
CONFIG += c++11
CONFIG += console
SOURCES += main.cpp \
drivemanager.cpp \
releasemanager.cpp \
utilities.cpp
RESOURCES += qml.qrc \
assets.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
HEADERS += \
drivemanager.h \
releasemanager.h \
utilities.h \
linuxdrivemanager.h
linux {
QT += dbus
SOURCES += linuxdrivemanager.cpp
}