utils.pri 368 B

1234567891011121314151617181920
  1. INCLUDEPATH += $$PWD
  2. DEFINES += UTILS_STATIC_LIBRARY
  3. HEADERS += \
  4. $$PWD/algorithm.h \
  5. $$PWD/expected.h \
  6. $$PWD/hostosinfo.h \
  7. $$PWD/itemviews.h \
  8. $$PWD/osspecificaspects.h \
  9. $$PWD/qtcassert.h \
  10. $$PWD/utils_global.h
  11. SOURCES += \
  12. $$PWD/hostosinfo.cpp \
  13. $$PWD/itemviews.cpp \
  14. $$PWD/qtcassert.cpp
  15. win32 {
  16. LIBS += -ldbghelp
  17. }