-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNoteTrainer.pro
50 lines (43 loc) · 1.21 KB
/
NoteTrainer.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#-------------------------------------------------
#
# Project created by QtCreator 2016-03-06T17:28:48
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
TARGET = NoteTrainer
TEMPLATE = app
macx: {
DEFINES += __MACOSX_CORE__
LIBS += -framework CoreMIDI -framework CoreAudio -framework CoreFoundation
}
SOURCES += main.cpp\
MainWindow.cpp \
Utils/WidgetUtils.cpp \
Controls/NoteSelector.cpp \
Data/Note.cpp \
Controls/NoteGuess.cpp \
Controls/NoteView.cpp \
Models/NoteViewScene.cpp \
GraphicsItems/StaffGraphicsItem.cpp \
Utils/Utils.cpp \
GraphicsItems/NoteGraphicsItem.cpp \
ThirdParty/rtmidi/RtMidi.cpp \
Controllers/MidiReader.cpp \
Controls/StaffSettings.cpp
HEADERS += MainWindow.h \
Utils/WidgetUtils.h \
Controls/NoteSelector.h \
Data/Note.h \
Controls/NoteGuess.h \
Controls/NoteView.h \
Models/NoteViewScene.h \
GraphicsItems/StaffGraphicsItem.h \
Utils/Utils.h \
GraphicsItems/NoteGraphicsItem.h \
ThirdParty/rtmidi/RtMidi.h \
Controllers/MidiReader.h \
Controls/StaffSettings.h
RESOURCES += \
NoteTrainer.qrc