diff options
Diffstat (limited to 'src/examples/piano/piano.pro')
-rw-r--r-- | src/examples/piano/piano.pro | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/examples/piano/piano.pro b/src/examples/piano/piano.pro new file mode 100644 index 0000000..fbf020a --- /dev/null +++ b/src/examples/piano/piano.pro @@ -0,0 +1,20 @@ +TEMPLATE = app +QT = quick + +DEFINES += \ + TOP_OUTDIR=\\\"$$TOP_OUTDIR/\\\" \ + TOP_SRCDIR=\\\"$$TOP_SRCDIR/\\\" \ + OUTDIR=\\\"$$OUT_PWD/\\\" \ + SRCDIR=\\\"$$PWD/\\\" + +SOURCES += \ + piano.cpp + +RESOURCES += \ + piano.qrc + +OTHER_FILES += \ + qml/Piano.qml \ + qml/PianoKey.qml \ + qml/DarkPianoKey.qml \ + qml/LightPianoKey.qml |