This repository has been archived by the owner on Jul 23, 2023. It is now read-only.
forked from LostMoho/Papagayo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPapagayo.pro
74 lines (51 loc) · 1.62 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
#-------------------------------------------------
#
# 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 \
src/mooddialog.cpp
INCLUDEPATH += src
win32 {
INCLUDEPATH += libsndfile_1.0.25/x64/include
LIBS += -LG:\dev\git\Papagayo\libsndfile_1.0.25\x64\lib -llibsndfile-1
#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
MY_DLL_FILES += LG:\dev\git\Papagayo\libsndfile_1.0.25\x64\bin\libsndfile-1.dll
} else {
LIBS += -lsndfile
}
HEADERS += src/mainwindow.h \
src/lipsyncdoc.h \
src/waveformview.h \
src/audioextractor.h \
src/mouthview.h \
src/pg_config.h \
src/breakdowndialog.h \
src/mooddialog.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
target.path = $$(PREFIX)/bin
target.files = Papagayo
INSTALLS += target