1CONFIG -= qt 2CONFIG += depend_includepath 3win*: CONFIG += console 4 5# ublas include directory 6INCLUDEPATH += \ 7 ../../../../../include 8 9QMAKE_CXXFLAGS += -fno-inline 10QMAKE_CXXFLAGS += -std=c++17 11 12# If ublas tests are build with boost source code then, 13# then boost headers and boost libraries should be used. 14exists(../../../../../../boost-build.jam) { 15 INCLUDEPATH += ../../../../../../.. 16 LIBS += -L../../../../../../../stage/lib 17 QMAKE_RPATHDIR += ../../../../../../../stage/lib 18} 19