-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPatchdirector.pro
More file actions
78 lines (62 loc) · 1.78 KB
/
Copy pathPatchdirector.pro
File metadata and controls
78 lines (62 loc) · 1.78 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#-------------------------------------------------
#
# Project created by QtCreator 2016-09-15T22:21:45
#
#-------------------------------------------------
QT += core gui sql multimedia
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Patchdirector
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
editordialog.cpp \
audiorecorder.cpp \
recpresetsmodel.cpp \
zipfile.cpp \
licensedialog.cpp \
logdialog.cpp
HEADERS += mainwindow.h \
editordialog.h \
audiorecorder.h \
recpresetsmodel.h \
zipfile.h \
licensedialog.h \
logdialog.h
FORMS += mainwindow.ui \
editordialog.ui \
licensedialog.ui
TRANSLATIONS = translations/patchdirector_de.ts
RESOURCES += \
patchdirector.qrc
macx: ICON = Patchdirector.icns
win32: RC_FILE = Patchdirector.rc
win32 {
SOURCES += wasapiloopback.cpp \
wasapi-loopback/guid.cpp \
wasapi-loopback/loopback-capture.cpp \
wasapi-loopback/prefs.cpp
HEADERS += wasapiloopback.h \
wasapi-loopback/cleanup.h \
wasapi-loopback/common.h \
wasapi-loopback/log.h \
wasapi-loopback/loopback-capture.h \
wasapi-loopback/prefs.h
LIBS += avrt.lib ole32.lib $$PWD/soxr/libsoxr.lib
}
INCLUDEPATH += zip
SOURCES += zip/zip.c zip/unzip.c zip/ioapi.c
macx {
LIBS += $$PWD/zip/libz.a
DEFINES += HAVE_UNISTD_H HAVE_STDARG_H
}
win32 {
CONFIG(debug, debug|release) {
LIBS += $$PWD/zip/zlibd.lib
} else {
LIBS += $$PWD/zip/zlib.lib
}
}
macx: LIBS += -framework CoreServices -framework CoreAudio $$PWD/lame/libmp3lame.0.dylib
win32: LIBS += $$PWD/lame/libmp3lame.lib
DISTFILES += \
translations/patchdirector_de.ts