44 lines
1.0 KiB
Prolog
44 lines
1.0 KiB
Prolog
QT += core gui qml
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = qt-material-widgets
|
|
TEMPLATE = app
|
|
|
|
SOURCES += main.cpp\
|
|
mainwindow.cpp \
|
|
style.cpp \
|
|
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 \
|
|
ripple.cpp \
|
|
rippleoverlay.cpp
|
|
|
|
HEADERS += mainwindow.h \
|
|
style.h \
|
|
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 \
|
|
ripple.h \
|
|
rippleoverlay.h
|