src/src.pro

Sun, 11 Aug 2013 13:33:57 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sun, 11 Aug 2013 13:33:57 +0300
changeset 16
a8c78391e414
parent 15
3d3e5f0fc4cc
child 19
c9b6dd9dd4cd
permissions
-rw-r--r--

Only add 'widgets' to QT in the project file in Qt5 - Qt4 doesn't have it and using it results in a warning.

TARGET          = ../zandemo
DEPENDPATH     += .
INCLUDEPATH    += .
# RC_FILE         = ../ldforge.rc
# RESOURCES       = ../ldforge.qrc
RCC_DIR         = ./build/
OBJECTS_DIR     = ./build/
MOC_DIR         = ./build/
RCC_DIR         = ./build/
SOURCES         = *.cpp
HEADERS         = *.h
FORMS           = ui/*.ui
QMAKE_CXXFLAGS += -std=c++0x

# The widgets are separated into a different module in Qt5, so we need to add
# it here. Doing so under Qt4 just results in a warning, though.
greaterThan (QT_MAJOR_VERSION, 4): QT += widgets

mercurial