-
Notifications
You must be signed in to change notification settings - Fork 11
/
gphoto.pro
50 lines (43 loc) · 1.26 KB
/
gphoto.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
TARGET = gphoto
QT += core gui multimedia
TEMPLATE = lib
CONFIG += plugin
PLUGIN_TYPE=mediaservice
PLUGIN_CLASS_NAME=GPhotoServicePlugin
#DESTDIR = $$[QT_INSTALL_PLUGINS]/mediaservice
SOURCES += \
gphotocamera.cpp \
gphotocameracapturedestinationcontrol.cpp \
gphotocameracontrol.cpp \
gphotocamerafocuscontrol.cpp \
gphotocameraimagecapturecontrol.cpp \
gphotocameralockcontrol.cpp \
gphotocamerasession.cpp \
gphotocontroller.cpp \
gphotoexposurecontrol.cpp \
gphotomediaservice.cpp \
gphotoserviceplugin.cpp \
gphotovideoinputdevicecontrol.cpp \
gphotovideoprobecontrol.cpp \
gphotovideorenderercontrol.cpp \
gphotoworker.cpp
HEADERS += \
gphotocamera.h \
gphotocameracapturedestinationcontrol.h \
gphotocameracontrol.h \
gphotocamerafocuscontrol.h \
gphotocameraimagecapturecontrol.h \
gphotocameralockcontrol.h \
gphotocamerasession.h \
gphotocontroller.h \
gphotoexposurecontrol.h \
gphotomediaservice.h \
gphotoserviceplugin.h \
gphotovideoinputdevicecontrol.h \
gphotovideoprobecontrol.h \
gphotovideorenderercontrol.h \
gphotoworker.h
OTHER_FILES += gphoto.json
LIBS += -lgphoto2
target.path = $$[QT_INSTALL_PLUGINS]/mediaservice
INSTALLS += target