2016-03-18 14:21:45 +00:00
|
|
|
QT += core gui qml
|
|
|
|
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
|
|
|
TARGET = qt-material-widgets
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
|
|
mainwindow.cpp \
|
|
|
|
style.cpp \
|
2016-03-19 11:07:25 +00:00
|
|
|
components/appbar.cpp \
|
|
|
|
components/checkbox.cpp \
|
|
|
|
components/dialog.cpp \
|
|
|
|
components/flatbutton.cpp \
|
|
|
|
components/iconbutton.cpp \
|
|
|
|
components/iconmenu.cpp \
|
|
|
|
components/list.cpp \
|
|
|
|
components/radiobutton.cpp \
|
|
|
|
components/slider.cpp \
|
|
|
|
components/tab.cpp \
|
|
|
|
components/tabs.cpp \
|
|
|
|
components/textfield.cpp \
|
|
|
|
components/table.cpp \
|
2016-03-19 11:12:14 +00:00
|
|
|
lib/ripple.cpp \
|
|
|
|
lib/rippleoverlay.cpp
|
2016-03-18 14:21:45 +00:00
|
|
|
|
|
|
|
HEADERS += mainwindow.h \
|
|
|
|
style.h \
|
2016-03-19 11:07:25 +00:00
|
|
|
components/appbar.h \
|
|
|
|
components/checkbox.h \
|
|
|
|
components/dialog.h \
|
|
|
|
components/flatbutton.h \
|
|
|
|
components/iconbutton.h \
|
|
|
|
components/iconmenu.h \
|
|
|
|
components/list.h \
|
|
|
|
components/radiobutton.h \
|
|
|
|
components/slider.h \
|
|
|
|
components/tab.h \
|
|
|
|
components/tabs.h \
|
|
|
|
components/textfield.h \
|
|
|
|
components/table.h \
|
2016-03-19 11:12:14 +00:00
|
|
|
lib/ripple.h \
|
|
|
|
lib/rippleoverlay.h
|