LHColorDialog.pro 855 B

12345678910111213141516171819202122232425262728293031323334353637
  1. QT -= gui
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. TEMPLATE = lib
  4. DEFINES += EXPORT_LIBRARY
  5. CONFIG += c++11
  6. # You can make your code fail to compile if it uses deprecated APIs.
  7. # In order to do so, uncomment the following line.
  8. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  9. QMAKE_RPATHDIR += ./
  10. SOURCES += \
  11. colordialogapi.cpp \
  12. lhcolordialog.cpp \
  13. $$files(DropShadow/*.cpp, false) \
  14. $$files(ImageBlur/*.cpp, false) \
  15. $$files(PaintHelper/*.cpp, false)
  16. HEADERS += \
  17. colordialogapi.h \
  18. lhcolordialog.h \
  19. $$files(DropShadow/*.h, false) \
  20. $$files(ImageBlur/*.h, false) \
  21. $$files(PaintHelper/*.h, false)
  22. # Default rules for deployment.
  23. unix {
  24. target.path = /usr/lib
  25. }
  26. !isEmpty(target.path): INSTALLS += target
  27. RESOURCES += \
  28. resource.qrc