summaryrefslogtreecommitdiffstats
path: root/daemon/AnyLoader.pro
blob: ca8e42a2ed8cad6557c748428f9d3c473b8be7f3 (plain) (blame)
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
#CONFIG += ripping
QT += network
QT -= gui
TARGET = anyloader
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cpp \
    Movie.cpp \
    Task.cpp \
    EncodeTask.cpp \
    UploadTask.cpp \
    Controller.cpp \
    TitleInformation.cpp \
    Listener.cpp \
    EncodeTarget.cpp
HEADERS += Movie.h \
    Task.h \
    EncodeTask.h \
    UploadTask.h \
    Controller.h \
    TitleInformation.h \
    Listener.h \
    EncodeTarget.h
ripping {
    QT += dbus
    LIBS += -ldvdcss \
	-ldvdread
    DEFINES += ENABLE_RIPPING
    HEADERS += RipTask.h \
	DVDDrive.h
    SOURCES += RipTask.cpp \
	DVDDrive.cpp
}
OTHER_FILES += ../Protocol.txt
QMAKE_STRIP = echo
handbrake.path = /usr/local/bin
handbrake.files = ./HandBrakeCLI
init.path = /etc/init.d
init.files = ./init.d/anyloader
target.path = /usr/local/bin
INSTALLS += handbrake \
    init \
    target