]> Shamusworld >> Repos - wozmaker/blob - wozmaker.pro
Add "settings" dialog, fixes to work with MXE cross-compilation.
[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 QT        += widgets
8
9 # We stuff all the intermediate crap into obj/ so it won't confuse us mere mortals ;-)
10 OBJECTS_DIR = obj
11 MOC_DIR     = obj
12 RCC_DIR     = obj
13 UI_DIR      = obj
14
15 INCLUDEPATH += \
16         src
17
18 DEPENDPATH = \
19         src
20
21 HEADERS = \
22         src/analysisthread.h \
23         src/app.h \
24         src/diskdrawthread.h \
25         src/diskwidget.h \
26         src/dsp.h \
27         src/fileio.h \
28         src/global.h \
29         src/infowidget.h \
30         src/mainwidget.h \
31         src/mainwin.h \
32         src/navwidget.h \
33         src/nibblewidget.h \
34         src/settingsdialog.h \
35         src/waveformwidget.h
36
37 SOURCES = \
38         src/analysisthread.cpp \
39         src/app.cpp \
40         src/diskdrawthread.cpp \
41         src/diskwidget.cpp \
42         src/dsp.cpp \
43         src/fileio.cpp \
44         src/global.cpp \
45         src/infowidget.cpp \
46         src/mainwidget.cpp \
47         src/mainwin.cpp \
48         src/navwidget.cpp \
49         src/nibblewidget.cpp \
50         src/settingsdialog.cpp \
51         src/waveformwidget.cpp
52