configuration.pri 492 B

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