forked from qt-creator/qt-creator
Introduce conditionals in the profiles and source code to be able to test Qt 4 and Qt 5. Change-Id: I73df5558f2945742d3e56f94baca0ee4d5f9dab8 Reviewed-on: http://codereview.qt-project.org/6330 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: hjk <qthjk@ovi.com>
25 lines
390 B
Prolog
25 lines
390 B
Prolog
TEMPLATE = app
|
|
TARGET = simple_test_app
|
|
DEPENDPATH += .
|
|
INCLUDEPATH += .
|
|
DESTDIR = .
|
|
|
|
SOURCES += simple_test_app.cpp
|
|
|
|
QT += network
|
|
QT += script
|
|
QT += xml
|
|
greaterThan(QT_MAJOR_VERSION, 4) {
|
|
QT += core-private
|
|
QT *= widgets
|
|
}
|
|
#unix: QMAKE_CXXFLAGS += -msse2
|
|
#DEFINES += USE_BOOST=1
|
|
|
|
message("this says <foo & bar>")
|
|
|
|
maemo5 {
|
|
target.path = /opt/usr/lib
|
|
INSTALLS += target
|
|
}
|