forked from ibsh/libKeyFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibKeyFinder.pro
More file actions
121 lines (108 loc) · 2.91 KB
/
LibKeyFinder.pro
File metadata and controls
121 lines (108 loc) · 2.91 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
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
#*************************************************************************
#
# Copyright 2011-2013 Ibrahim Sha'ath
#
# This file is part of LibKeyFinder.
#
# LibKeyFinder 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.
#
# LibKeyFinder 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 LibKeyFinder. If not, see <http://www.gnu.org/licenses/>.
#
#*************************************************************************
QT -= gui
CONFIG -= qt
TARGET = keyfinder
TEMPLATE = lib
VERSION = 0.8.0
DEFINES += LIBKEYFINDER_LIBRARY
HEADERS += \
audiodata.h \
binode.h \
chromagram.h \
chromatransform.h \
chromatransformfactory.h \
constants.h \
exception.h \
fftadapter.h \
keyclassifier.h \
keyfinder.h \
keyfinderresult.h \
lowpassfilter.h \
lowpassfilterfactory.h \
parameters.h \
ringbuffer.h \
segmentation.h \
spectrumanalyser.h \
toneprofiles.h \
windowfunctions.h \
workspace.h
SOURCES += \
audiodata.cpp \
chromagram.cpp \
chromatransform.cpp \
chromatransformfactory.cpp \
fftadapter.cpp \
keyclassifier.cpp \
keyfinder.cpp \
lowpassfilter.cpp \
lowpassfilterfactory.cpp \
parameters.cpp \
ringbuffer.cpp \
segmentation.cpp \
spectrumanalyser.cpp \
toneprofiles.cpp \
windowfunctions.cpp \
workspace.cpp
OTHER_FILES += README
unix|macx{
LIBS += -lfftw3 -lboost_system -lboost_thread
}
macx{
DEPENDPATH += /usr/local/lib
INCLUDEPATH += /usr/local/include
CONFIG -= ppc ppc64
CONFIG += x86 x86_64
# installs
QMAKE_LFLAGS_SONAME = -Wl,-install_name,/usr/local/lib/
headers.path = /usr/local/include/$$TARGET
headers.files = $$HEADERS
INSTALLS += headers
}
win32{
# INCLUDEPATH += C:/MSYS/local/include
# DEPENDPATH += C:/MSYS/local/bin
# LIBS += -LC:/MSYS/local/bin
# LIBS += -lfftw3-3
INCLUDEPATH += C:/MinGW/msys/1.0/local/include
DEPENDPATH += C:/MinGW/msys/1.0/local/bin
LIBS += -LC:/MinGW/msys/1.0/local/bin
LIBS += -LC:/MinGW/msys/1.0/local/lib
LIBS += -lfftw3-3 -lboost_system-47-mt-1_52 -lboost_thread-47-mt-1_52
}
# the rest auto generated by Qt Creator...
symbian {
MMP_RULES += EXPORTUNFROZEN
TARGET.UID3 = 0xE1558240
TARGET.CAPABILITY =
TARGET.EPOCALLOWDLLDATA = 1
addFiles.sources = LibKeyFinder.dll
addFiles.path = !:/sys/bin
DEPLOYMENT += addFiles
}
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/local/lib
}
INSTALLS += target
}