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 \
|
2016-03-19 13:40:28 +00:00
|
|
|
lib/rippleoverlay.cpp \
|
2016-03-22 08:31:46 +00:00
|
|
|
lib/customshadoweffect.cpp \
|
2016-03-19 13:40:28 +00:00
|
|
|
examples/frame.cpp \
|
|
|
|
examples/examplelist.cpp \
|
|
|
|
examples/flatbuttonexamples.cpp \
|
|
|
|
examples/exampleview.cpp \
|
|
|
|
examples/about.cpp \
|
|
|
|
examples/appbarexamples.cpp \
|
2016-03-20 08:27:10 +00:00
|
|
|
examples/iconbuttonexamples.cpp \
|
2016-03-20 08:58:32 +00:00
|
|
|
examples/tabsexamples.cpp \
|
2016-03-22 08:51:37 +00:00
|
|
|
examples/tableexamples.cpp \
|
|
|
|
components/raisedbutton.cpp \
|
2016-03-22 14:20:34 +00:00
|
|
|
examples/raisedbuttonexamples.cpp \
|
2016-03-25 21:57:51 +00:00
|
|
|
examples/sliderexamples.cpp \
|
2016-03-26 06:41:54 +00:00
|
|
|
components/toggle.cpp \
|
|
|
|
examples/toggleexamples.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 \
|
2016-03-19 13:40:28 +00:00
|
|
|
lib/rippleoverlay.h \
|
2016-03-22 08:31:46 +00:00
|
|
|
lib/customshadoweffect.h \
|
2016-03-19 13:40:28 +00:00
|
|
|
examples/frame.h \
|
|
|
|
examples/examplelist.h \
|
|
|
|
examples/flatbuttonexamples.h \
|
|
|
|
examples/exampleview.h \
|
|
|
|
examples/about.h \
|
|
|
|
examples/appbarexamples.h \
|
2016-03-20 08:27:10 +00:00
|
|
|
examples/iconbuttonexamples.h \
|
2016-03-20 08:58:32 +00:00
|
|
|
examples/tabsexamples.h \
|
2016-03-22 08:51:37 +00:00
|
|
|
examples/tableexamples.h \
|
|
|
|
components/raisedbutton.h \
|
2016-03-22 14:20:34 +00:00
|
|
|
examples/raisedbuttonexamples.h \
|
2016-03-25 21:57:51 +00:00
|
|
|
examples/sliderexamples.h \
|
2016-03-26 06:41:54 +00:00
|
|
|
components/toggle.h \
|
|
|
|
examples/toggleexamples.h
|