1 CONFIG += qt debug |
|
2 TARGET = ../zcinema |
|
3 DEPENDPATH += . |
|
4 INCLUDEPATH += . |
|
5 RC_FILE = ../zcinema.rc |
|
6 RESOURCES = ../zcinema.qrc |
|
7 RCC_DIR = ./build/ |
|
8 OBJECTS_DIR = ./build/ |
|
9 MOC_DIR = ./build/ |
|
10 RCC_DIR = ./build/ |
|
11 SOURCES = *.cpp |
|
12 HEADERS = *.h |
|
13 FORMS = ui/*.ui |
|
14 QMAKE_CXXFLAGS += -std=c++0x |
|
15 |
|
16 # The widgets are separated into a different module in Qt5, so we need to add |
|
17 # it here. Doing so under Qt4 just results in a warning, though. |
|
18 greaterThan (QT_MAJOR_VERSION, 4): QT += widgets |
|