Files
qt-creator/tests/manual/debugger/simple/simple_test_app.pro
hjk bebc351c35 debugger: add manual test for rvalue references
Currently shown as normal references, but that's according to
what gdb reports.

Change-Id: I7d56429b8cca128accb8a638992ea7e4e8241305
Reviewed-by: hjk <qthjk@ovi.com>
2012-10-31 15:02:16 +01:00

48 lines
839 B
Prolog

TEMPLATE = app
TARGET = simple_test_app
DEPENDPATH += .
INCLUDEPATH += .
DESTDIR = .
SOURCES += simple_test_app.cpp
QT += network
QT += script
QT += xml
contains(QT_CONFIG, webkit) {
QT += webkit
}
greaterThan(QT_MAJOR_VERSION, 4) {
QT += core-private
QT *= widgets
}
false {
QT -= gui webkit widgets
} else {
DEFINES += USE_GUILIB
}
#unix: QMAKE_CXXFLAGS += -msse2
#DEFINES += USE_BOOST=1
maemo5 {
target.path = /opt/usr/lib
target.path = /opt
INSTALLS += target
}
#*g++* {
# DEFINES += USE_CXX11
# QMAKE_CXXFLAGS += -std=c++0x
#}
exists($$QMAKE_INCDIR_QT/QtCore/private/qobject_p.h):DEFINES += USE_PRIVATE
exists(/usr/include/boost/optional.hpp): DEFINES += USE_BOOST
exists(/usr/include/eigen2/Eigen/Core): DEFINES += USE_EIGEN
# Use for semi-automated testing
#DEFINES += USE_AUTORUN=1