-
Notifications
You must be signed in to change notification settings - Fork 42
/
Papagayo.pro
157 lines (132 loc) · 4.39 KB
/
Papagayo.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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#-------------------------------------------------
#
# Project created by QtCreator 2014-06-03T18:13:04
#
#-------------------------------------------------
QT += core gui multimedia
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Papagayo
TEMPLATE = app
SOURCES += src/main.cpp \
src/mainwindow.cpp \
src/lipsyncdoc.cpp \
src/waveformview.cpp \
src/mouthview.cpp \
src/audioextractor.cpp \
src/breakdowndialog.cpp
INCLUDEPATH += src
win32 {
INCLUDEPATH += libsndfile_1.0.25/Win32/include
LIBS += -LC:\Users\mclifton\Documents\QtDevelopment\Papagayo\libsndfile_1.0.25\Win32\lib -llibsndfile-1
#LIBS += -Llibsndfile_1.0.25\Win32\lib -llibsndfile-1
MY_DLL_FILES += LC:\Users\mclifton\Documents\QtDevelopment\Papagayo\libsndfile_1.0.25\Win32\bin\libsndfile-1.dll
} else {
SOURCES += \
libsndfile_1.0.19/aiff.c \
libsndfile_1.0.19/alaw.c \
libsndfile_1.0.19/au.c \
libsndfile_1.0.19/audio_detect.c \
libsndfile_1.0.19/avr.c \
libsndfile_1.0.19/broadcast.c \
libsndfile_1.0.19/caf.c \
libsndfile_1.0.19/chunk.c \
libsndfile_1.0.19/command.c \
libsndfile_1.0.19/common.c \
libsndfile_1.0.19/dither.c \
libsndfile_1.0.19/double64.c \
libsndfile_1.0.19/dwd.c \
libsndfile_1.0.19/dwvw.c \
libsndfile_1.0.19/file_io.c \
libsndfile_1.0.19/flac.c \
libsndfile_1.0.19/float32.c \
libsndfile_1.0.19/gsm610.c \
libsndfile_1.0.19/htk.c \
libsndfile_1.0.19/ima_adpcm.c \
libsndfile_1.0.19/ima_oki_adpcm.c \
libsndfile_1.0.19/interleave.c \
libsndfile_1.0.19/ircam.c \
libsndfile_1.0.19/macbinary3.c \
libsndfile_1.0.19/macos.c \
libsndfile_1.0.19/mat4.c \
libsndfile_1.0.19/mat5.c \
libsndfile_1.0.19/mpc2k.c \
libsndfile_1.0.19/ms_adpcm.c \
libsndfile_1.0.19/nist.c \
libsndfile_1.0.19/ogg.c \
libsndfile_1.0.19/paf.c \
libsndfile_1.0.19/pcm.c \
libsndfile_1.0.19/pvf.c \
libsndfile_1.0.19/raw.c \
libsndfile_1.0.19/rf64.c \
libsndfile_1.0.19/rx2.c \
libsndfile_1.0.19/sd2.c \
libsndfile_1.0.19/sds.c \
libsndfile_1.0.19/sndfile.c \
libsndfile_1.0.19/strings.c \
libsndfile_1.0.19/svx.c \
libsndfile_1.0.19/txw.c \
libsndfile_1.0.19/ulaw.c \
libsndfile_1.0.19/voc.c \
libsndfile_1.0.19/vox_adpcm.c \
libsndfile_1.0.19/w64.c \
libsndfile_1.0.19/wav_w64.c \
libsndfile_1.0.19/wav.c \
libsndfile_1.0.19/wve.c \
libsndfile_1.0.19/xi.c \
libsndfile_1.0.19/G72x/g72x.c \
libsndfile_1.0.19/G72x/g721.c \
libsndfile_1.0.19/G72x/g723_16.c \
libsndfile_1.0.19/G72x/g723_24.c \
libsndfile_1.0.19/G72x/g723_40.c \
libsndfile_1.0.19/GSM610/add.c \
libsndfile_1.0.19/GSM610/code.c \
libsndfile_1.0.19/GSM610/decode.c \
libsndfile_1.0.19/GSM610/gsm_create.c \
libsndfile_1.0.19/GSM610/gsm_decode.c \
libsndfile_1.0.19/GSM610/gsm_destroy.c \
libsndfile_1.0.19/GSM610/gsm_encode.c \
libsndfile_1.0.19/GSM610/gsm_option.c \
libsndfile_1.0.19/GSM610/long_term.c \
libsndfile_1.0.19/GSM610/lpc.c \
libsndfile_1.0.19/GSM610/preprocess.c \
libsndfile_1.0.19/GSM610/rpe.c \
libsndfile_1.0.19/GSM610/short_term.c \
libsndfile_1.0.19/GSM610/table.c \
libsndfile_1.0.19/g72x_src.c
HEADERS += \
libsndfile_1.0.19/common.h \
libsndfile_1.0.19/config.h \
libsndfile_1.0.19/ima_oki_adpcm.h \
libsndfile_1.0.19/sf_unistd.h \
libsndfile_1.0.19/sfconfig.h \
libsndfile_1.0.19/sfendian.h \
libsndfile_1.0.19/sndfile.h \
libsndfile_1.0.19/test_main.h \
libsndfile_1.0.19/wav_w64.h \
libsndfile_1.0.19/G72x/g72x_priv.h \
libsndfile_1.0.19/G72x/g72x.h \
libsndfile_1.0.19/GSM610/config.h \
libsndfile_1.0.19/GSM610/gsm.h \
libsndfile_1.0.19/GSM610/gsm610_priv.h \
INCLUDEPATH += libsndfile_1.0.19
}
HEADERS += src/mainwindow.h \
src/lipsyncdoc.h \
src/waveformview.h \
src/audioextractor.h \
src/mouthview.h \
src/pg_config.h \
src/breakdowndialog.h
FORMS += src/mainwindow.ui \
src/breakdowndialog.ui
OTHER_FILES += \
ToDo.txt
RESOURCES += \
rsrc/papagayo.qrc
ICON = mac/papagayo.icns
QMAKE_INFO_PLIST = mac/Info.plist
RC_FILE = win/papagayo.rc
OBJECTIVE_SOURCES +=
extra_libs.files = MY_DLL_FILES
extra_libs.path = $$DESTDIR
INSTALLS += extra_libs