source: smplayer/trunk/src/findsubtitles/findsubtitles.pro@ 128

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 
1TEMPLATE = app
2LANGUAGE = C++
3
4CONFIG += qt warn_on release
5
6QT += network xml
7
8INCLUDEPATH += ..
9DEPENDPATH += ..
10
11HEADERS += 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
20SOURCES += 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
30FORMS += findsubtitleswindow.ui findsubtitlesconfigdialog.ui
31
32DEFINES += NO_SMPLAYER_SUPPORT DOWNLOAD_SUBS
33
34contains( 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
67unix {
68 UI_DIR = .ui
69 MOC_DIR = .moc
70 OBJECTS_DIR = .obj
71}
72
73win32 {
74 CONFIG += console
75}
76
Note: See TracBrowser for help on using the repository browser.