forked from qt-creator/qt-creator
We can't disable C++11 anymore, disable the boost test instead. Change-Id: I68e39a348b35ce7c37abac633d3ea68526f0ff2d Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
16 lines
303 B
Prolog
16 lines
303 B
Prolog
QT -= gui widgets
|
|
include(../qttest.pri)
|
|
|
|
QT += core-private
|
|
|
|
exists(/usr/include/boost/unordered/unordered_set.hpp) {
|
|
DEFINES += HAS_BOOST
|
|
}
|
|
|
|
exists(/usr/local/include/boost/unordered/unordered_set.hpp) {
|
|
DEFINES += HAS_BOOST
|
|
INCLUDEPATH += /usr/local/include
|
|
}
|
|
|
|
SOURCES += tst_offsets.cpp
|