forked from qt-creator/qt-creator
Change-Id: Ia2e0a1c69f73446b45915559294e3348e725ce56 Reviewed-by: hjk <hjk@theqtcompany.com>
18 lines
380 B
Prolog
18 lines
380 B
Prolog
QT -= gui widgets
|
|
include(../qttest.pri)
|
|
|
|
QT += core-private
|
|
|
|
CONFIG -= c++11 # Fails to build with boost (due to #define private public)
|
|
|
|
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
|