]> Shamusworld >> Repos - wozmaker/blob - wozmaker.pro
Flesh out the disk settings dialog.
[wozmaker] / wozmaker.pro
1 # Use 'qmake -o Makefile wozmaker.pro'
2
3 CONFIG     += qt warn_on release c++11
4 RESOURCES  += res/resources.qrc
5 #LIBS       += -Ldxflib/lib -ldxf
6 #LIBS       += -lao
7 #QMAKE_LIBS += -static
8 QT         += widgets
9
10 # We stuff all the intermediate crap into obj/ so it won't confuse us mere mortals ;-)
11 OBJECTS_DIR = obj
12 MOC_DIR     = obj
13 RCC_DIR     = obj
14 UI_DIR      = obj
15
16 win32: RC_ICONS = res/woz-icon.ico
17
18 INCLUDEPATH += \
19         src
20
21 DEPENDPATH = \
22         src
23
24 HEADERS = \
25         src/analysisthread.h \
26         src/app.h \
27         src/diskdrawthread.h \
28         src/diskwidget.h \
29         src/dsp.h \
30         src/fileio.h \
31         src/global.h \
32         src/infowidget.h \
33         src/mainwidget.h \
34         src/mainwin.h \
35         src/navwidget.h \
36         src/nibblewidget.h \
37         src/settingsdialog.h \
38         src/waveformwidget.h
39
40 SOURCES = \
41         src/analysisthread.cpp \
42         src/app.cpp \
43         src/diskdrawthread.cpp \
44         src/diskwidget.cpp \
45         src/dsp.cpp \
46         src/fileio.cpp \
47         src/global.cpp \
48         src/infowidget.cpp \
49         src/mainwidget.cpp \
50         src/mainwin.cpp \
51         src/navwidget.cpp \
52         src/nibblewidget.cpp \
53         src/settingsdialog.cpp \
54         src/waveformwidget.cpp
55