forked from ibsh/is_KeyFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathis_KeyFinder.pro
executable file
·146 lines (127 loc) · 3.13 KB
/
is_KeyFinder.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
# Copyright 2011 Ibrahim Sha'ath
# This file is part of KeyFinder.
# KeyFinder is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# KeyFinder is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with KeyFinder. If not, see <http://www.gnu.org/licenses/>.
QT += core
QT += gui
QT += xml
QT += xmlpatterns
QT += network
TEMPLATE = app
TARGET = KeyFinder
SOURCES += \
decoderlibav.cpp \
downsamplerlibsrc.cpp \
downsamplerib.cpp \
preferences.cpp \
decoder.cpp \
downsampler.cpp \
metadatataglib.cpp \
main.cpp \
guiabout.cpp \
guibatch.cpp \
guidetail.cpp \
guimenuhandler.cpp \
guiprefs.cpp \
asynckeyprocess.cpp \
asyncmetadatareadprocess.cpp \
os_windows.cpp \
asyncfileobject.cpp \
externalplaylist.cpp \
externalplaylistserato.cpp \
libkeyfindersingleton.cpp
HEADERS += \
decoderlibav.h \
decoder.h \
chromagram.h \
downsamplerlibsrc.h \
downsamplerib.h \
downsampler.h \
windowfunctions.h \
toneprofiles.h \
spectrumanalyser.h \
preferences.h \
spectrumanalyserfactory.h \
exception.h \
hcdf.h \
keyclassifier.h \
metadatataglib.h \
hcdfharte.h \
hcdfcosine.h \
hcdfnone.h \
fftppdirectsk.h \
spectrumanalyserfftw.h \
fftpp.h \
hcdfarbitrary.h \
audiostream.h \
guiabout.h \
guibatch.h \
guidetail.h \
guimenuhandler.h \
guiprefs.h \
asynckeyprocess.h \
asynckeyresult.h \
asyncmetadatareadprocess.h \
asyncmetadatareadresult.h \
os_windows.h \
_VERSION.h \
asyncfileobject.h \
externalplaylist.h \
externalplaylistserato.h \
libkeyfindersingleton.h
FORMS += \
detailwindow.ui \
batchwindow.ui \
aboutdialog.ui \
prefsdialog.ui
OTHER_FILES += \
README \
win32.rc
UI_DIR = ui
# for libav
QMAKE_CXXFLAGS += -D__STDC_CONSTANT_MACROS
RESOURCES += resources.qrc
unix|macx{
LIBS += -lkeyfinder
LIBS += -lavutil
LIBS += -lavcodec
LIBS += -lavformat
LIBS += -lfftw3
LIBS += -lsamplerate
LIBS += -ltag
LIBS += -lxerces-c
LIBS += -lxqilla
ICON = is_KeyFinder.icns
QMAKE_INFO_PLIST =
}
macx{
DEPENDPATH += /usr/local/lib
INCLUDEPATH += /usr/local/include
CONFIG -= ppc ppc64
CONFIG += x86 x86_64
}
win32{
INCLUDEPATH += C:/MSYS/local/include
DEPENDPATH += C:/MSYS/local/bin
LIBS += -LC:/MSYS/local/bin
LIBS += -lkeyfinder0
LIBS += -lavcodec
LIBS += -lavformat
LIBS += -lavutil
LIBS += -lsamplerate-0
LIBS += -lfftw3-3
INCLUDEPATH += C:/MSYS/home/user/taglib-1.7
INCLUDEPATH += C:/MSYS/home/user/taglib-1.7/include
DEPENDPATH += C:/MSYS/home/user/taglib-1.7/taglib
LIBS += -LC:/MSYS/home/user/taglib-1.7/taglib -llibtag
OTHER_FILES += is_KeyFinder.ico
RC_FILE = win32.rc
}