Last change
on this file since 128 was 128, checked in by Silvan Scherrer, 13 years ago |
SMPlayer: trunk update to latest svn
|
-
Property svn:eol-style
set to
LF
|
File size:
1.5 KB
|
Line | |
---|
1 | TEMPLATE = app
|
---|
2 | LANGUAGE = C++
|
---|
3 |
|
---|
4 | CONFIG += qt warn_on release
|
---|
5 |
|
---|
6 | QT += network xml
|
---|
7 |
|
---|
8 | INCLUDEPATH += ..
|
---|
9 | DEPENDPATH += ..
|
---|
10 |
|
---|
11 | HEADERS += simplehttp.h \
|
---|
12 | osparser.h \
|
---|
13 | ../filehash.h \
|
---|
14 | ../lineedit_with_icon.h \
|
---|
15 | ../filechooser.h \
|
---|
16 | ../languages.h \
|
---|
17 | findsubtitlesconfigdialog.h \
|
---|
18 | findsubtitleswindow.h
|
---|
19 |
|
---|
20 | SOURCES += simplehttp.cpp \
|
---|
21 | osparser.cpp \
|
---|
22 | ../filehash.cpp \
|
---|
23 | ../lineedit_with_icon.cpp \
|
---|
24 | ../filechooser.cpp \
|
---|
25 | ../languages.cpp \
|
---|
26 | findsubtitlesconfigdialog.cpp \
|
---|
27 | findsubtitleswindow.cpp \
|
---|
28 | main.cpp
|
---|
29 |
|
---|
30 | FORMS += findsubtitleswindow.ui findsubtitlesconfigdialog.ui
|
---|
31 |
|
---|
32 | DEFINES += NO_SMPLAYER_SUPPORT DOWNLOAD_SUBS
|
---|
33 |
|
---|
34 | contains( DEFINES, DOWNLOAD_SUBS ) {
|
---|
35 | INCLUDEPATH += filedownloader quazip
|
---|
36 | DEPENDPATH += filedownloader quazip
|
---|
37 |
|
---|
38 | HEADERS += filedownloader.h subchooserdialog.h
|
---|
39 | SOURCES += filedownloader.cpp subchooserdialog.cpp
|
---|
40 |
|
---|
41 | FORMS += subchooserdialog.ui
|
---|
42 |
|
---|
43 | HEADERS += crypt.h \
|
---|
44 | ioapi.h \
|
---|
45 | quazip.h \
|
---|
46 | quazipfile.h \
|
---|
47 | quazipfileinfo.h \
|
---|
48 | quazipnewinfo.h \
|
---|
49 | unzip.h \
|
---|
50 | zip.h
|
---|
51 |
|
---|
52 | SOURCES += ioapi.c \
|
---|
53 | quazip.cpp \
|
---|
54 | quazipfile.cpp \
|
---|
55 | quazipnewinfo.cpp \
|
---|
56 | unzip.c \
|
---|
57 | zip.c
|
---|
58 |
|
---|
59 | LIBS += -lz
|
---|
60 |
|
---|
61 | win32 {
|
---|
62 | INCLUDEPATH += c:\development\zlib-1.2.3
|
---|
63 | LIBS += -Lc:\development\zlib-1.2.3
|
---|
64 | }
|
---|
65 | }
|
---|
66 |
|
---|
67 | unix {
|
---|
68 | UI_DIR = .ui
|
---|
69 | MOC_DIR = .moc
|
---|
70 | OBJECTS_DIR = .obj
|
---|
71 | }
|
---|
72 |
|
---|
73 | win32 {
|
---|
74 | CONFIG += console
|
---|
75 | }
|
---|
76 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.