-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathafisha-cinema.pro
53 lines (47 loc) · 1.08 KB
/
afisha-cinema.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
51
52
53
TEMPLATE = app
CONFIG += qt
QT += gui network xml xmlpatterns webkit
RESOURCES = queries.qrc
INTERFACES += \
mainwindow.ui
SOURCES += \
main.cpp \
cinema.cpp \
cinemalist.cpp \
httphelpers.cpp \
afishahelpers.cpp \
httprequest.cpp \
movie.cpp \
movies.cpp \
mainwindow.cpp \
yamapsapi.cpp \
geocoder.cpp \
yamap.cpp \
cinemaprogress.cpp
HEADERS += \
cinema.h \
cinemalist.h \
httphelpers.h \
afishahelpers.h \
httprequest.h \
movie.h \
movies.h \
mainwindow.h \
yamapsapi.h \
geocoder.h \
yamap.h \
cinemaprogress.h
include($$PWD/iris-chunks/iris-chunks.pri)
include($$PWD/unittest.pri)
win32-msvc|win32-msvc.net|win32-msvc2005|win32-msvc2008 {
CONFIG += win32-msvc-flags
}
# Speed up compilation process
win32-msvc-flags:debug {
# /MD (Multithreaded runtime) http://msdn2.microsoft.com/en-us/library/2kzt1wy3.aspx
# /Gm (Enable Minimal Rebuild) http://msdn2.microsoft.com/en-us/library/kfz8ad09.aspx
# /INCREMENTAL http://msdn2.microsoft.com/en-us/library/4khtbfyf.aspx
QMAKE_CFLAGS += /Gm
QMAKE_CXXFLAGS += /Gm
QMAKE_LFLAGS += /INCREMENTAL
}