-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFastSpectrumAnalyzer.pro
75 lines (59 loc) · 1.52 KB
/
FastSpectrumAnalyzer.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-25T18:09:54
#
#-------------------------------------------------
QT += core gui multimedia
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = FastSpectrumAnalyzer
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
fft.cpp \
asserts.cpp \
stopwatch.cpp \
tostring.cpp \
voiceprintview.cpp \
audiotest.cpp \
taskqueue.cpp \
inputtoolbox.cpp
HEADERS += mainwindow.h \
fft.h \
asserts.h \
stopwatch.h \
tostring.h \
voiceprintview.h \
audiotest.h \
taskqueue.h \
inputtoolbox.h
FORMS += mainwindow.ui \
inputtoolbox.ui
CONFIG += c++11
CONFIG += mobility
CONFIG += warn_on
CONFIG += threads
CONFIG += ltcg
CONFIG += rtti
MOBILITY =
QMAKE_CXXFLAGS_DEBUG -= -O0
QMAKE_LFLAGS_DEBUG += -O0
QMAKE_CXXFLAGS_DEBUG += -march=native -ffast-math
QMAKE_CXXFLAGS_RELEASE += -march=native -ffast-math
QMAKE_LFLAGS_RELEASE += -march=native -ffast-math
QMAKE_CXXFLAGS_RELEASE -= -pg
QMAKE_LFLAGS_RELEASE -= -pg
QMAKE_CXXFLAGS_RELEASE -= -g
QMAKE_LFLAGS_RELEASE -= -g
#QMAKE_CXXFLAGS_RELEASE += -pg
#QMAKE_LFLAGS_RELEASE += -pg
#QMAKE_CXXFLAGS_RELEASE += -g
#QMAKE_LFLAGS_RELEASE += -g
QMAKE_CXXFLAGS_RELEASE += -ftree-vectorize
QMAKE_LFLAGS_RELEASE += -ftree-vectorize
QMAKE_CXXFLAGS_RELEASE += -O3
QMAKE_LFLAGS_RELEASE += -O3
QMAKE_CXXFLAGS_RELEASE -= -O2
QMAKE_LFLAGS_RELEASE -= -O2
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
OTHER_FILES += \
android/AndroidManifest.xml