QXlsx.pro 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. # QXlsx.pro
  2. TARGET = QXlsx
  3. TEMPLATE = lib
  4. CONFIG += staticlib
  5. QT += core
  6. QT += gui-private
  7. #####################################################################
  8. # set debug/release build environment
  9. #
  10. # CONFIG += debug_and_release
  11. # release: DESTDIR = lib-release
  12. # debug: DESTDIR = lib-debug
  13. # The following define makes your compiler emit warnings if you use
  14. # any feature of Qt which as been marked as deprecated (the exact warnings
  15. # depend on your compiler). Please consult the documentation of the
  16. # deprecated API in order to know how to port your code away from it.
  17. DEFINES += QT_DEPRECATED_WARNINGS
  18. # You can also make your code fail to compile if you use deprecated APIs.
  19. # In order to do so, uncomment the following line.
  20. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  21. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  22. QXLSX_PARENTPATH=$$PWD/
  23. QXLSX_HEADERPATH=$$PWD/header/
  24. QXLSX_SOURCEPATH=$$PWD/source/
  25. include($$PWD/QXlsx.pri)
  26. DESTDIR += $$PWD/../../bin