-
Notifications
You must be signed in to change notification settings - Fork 21
/
LiveView.pro
119 lines (103 loc) · 3.35 KB
/
LiveView.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
#-------------------------------------------------
#
# Project created by QtCreator 2017-10-18T16:45:28
#
#-------------------------------------------------
QT += core gui
QT += network
QT += printsupport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = LiveView
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
# DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
# DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
# You can compile LiveView with EDTpdv. In order to do so, uncomment the following line and make sure
# EDT is in your working directory
# DEFINES += USE_EDT
QMAKE_CXXFLAGS -= -std=gnu++11
QMAKE_CXXFLAGS += -O3 -std=c++0x -Wno-inconsistent-missing-override -Wno-ignored-attributes -Wno-date-time
DEFINES += \
HOST=\\\"`hostname`\\\" UNAME=\\\"`whoami`\\\" \
GIT_CURRENT_SHA1="\\\"$(shell git -C $$PWD rev-parse HEAD)\\\"" \
GIT_CURRENT_SHA1_SHORT="\\\"$(shell git -C $$PWD rev-parse --short HEAD)\\\""
OBJECTS_DIR = ./obj
MOC_DIR = ./obj
RC_FILE = liveview.rc
ICON = liveview.icns
INCLUDEPATH += ./include \
./include/qcustomplot
VPATH += ./include \
./src \
./kernel \
./util \
exists(EDT_include/edtinc.h): VPATH += ./EDT_include
SOURCES += \
main.cpp \
lvmainwindow.cpp \
frameview_widget.cpp \
frameworker.cpp \
qcustomplot.cpp \
envicamera.cpp \
xiocamera.cpp \
controlsbox.cpp \
darksubfilter.cpp \
ctkrangeslider.cpp \
osutils.cpp \
stddevfilter.cpp \
histogram_widget.cpp \
line_widget.cpp \
meanfilter.cpp \
fft_widget.cpp \
saveserver.cpp \
twoscomplimentfilter.cpp \
saveclient.cpp
exists(EDT_include/edtinc.h):SOURCES += clcamera.cpp
HEADERS += \
lvmainwindow.h \
frameview_widget.h \
image_type.h \
lvframe.h \
frameworker.h \
qcustomplot/qcustomplot.h \
cameramodel.h \
envicamera.h \
constants.h \
xiocamera.h \
osutils.h \
controlsbox.h \
alphanum.hpp \
darksubfilter.h \
ctkrangeslider.h \
lvtabapplication.h \
stddevfilter.h \
histogram_widget.h \
line_widget.h \
meanfilter.h \
fft_widget.h \
sliding_dft.h \
computedevdialog.h \
saveserver.h \
saveclient.h \
dsfprefdialog.h \
cameraselectdialog.h \
twoscomplimentfilter.h \
cameraviewdialog.h \
frameratedialog.h \
include/interlacefilter.h
exists(EDT_include/edtinc.h):HEADERS += clcamera.h
RESOURCES += \
images/images.qrc \
kernel/kernel.qrc \
qdarkstyle/style.qrc
DISTFILES += \
kernel/stddev.cl
macx: LIBS += -framework OpenCL
else:unix|win32: LIBS += -lOpenCL
exists(EDT_include/edtinc.h): unix:!macx: LIBS += -L$$PWD/lib -lm -lpdv -ldl