blob: af41d24a20df6fce6f97fb3837d27b741f602663 (
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
45
46
47
|
#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
s3cfg.path = /var/lib/anyloader
s3cfg.files = ./s3cfg
INSTALLS += handbrake \
init \
s3cfg \
target
|