forked from petersimonsson/libqatemcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibqatemcontrol.pro
More file actions
52 lines (42 loc) · 1.19 KB
/
libqatemcontrol.pro
File metadata and controls
52 lines (42 loc) · 1.19 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
QT += network
TARGET = qatemcontrol
TEMPLATE = lib
DEFINES += LIBQATEMCONTROL_LIBRARY
SOURCES += qatemconnection.cpp \
qatemfairlight.cpp \
qatemmixeffect.cpp \
qatemcameracontrol.cpp \
qatemdownstreamkey.cpp \
qatemrecording.cpp \
qatemstreaming.cpp \
qatemsubsystembase.cpp \
qatemsupersource.cpp \
qatemsupersourcebox.cpp
HEADERS += qatemconnection.h \
libqatemcontrol_global.h \
qatemfairlight.h \
qatemrecording.h \
qatemstreaming.h \
qatemsubsystembase.h \
qatemsupersource.h \
qatemsupersourcebox.h \
qupstreamkeysettings.h \
qatemmixeffect.h \
qatemtypes.h \
qatemcameracontrol.h \
qatemdownstreamkey.h
isEmpty(QAC_INSTALL_LIBS):QAC_INSTALL_LIBS = $$[QT_INSTALL_LIBS]
isEmpty(QAC_INSTALL_BINS):QAC_INSTALL_BINS = $$[QT_INSTALL_BINS]
isEmpty(QAC_INSTALL_HEADERS):QAC_INSTALL_HEADERS = $$[QT_INSTALL_HEADERS]/QAtemControl
unix {
target.path = $$QAC_INSTALL_LIBS
headers.path = $$QAC_INSTALL_HEADERS
headers.files = $$HEADERS
INSTALLS += headers target
}
windows {
target.path = $$QAC_INSTALL_LIBS
headers.path = $$QAC_INSTALL_HEADERS
headers.files=$$HEADERS
INSTALLS += headers target
}