gallery-core.pro 622 B

12345678910111213141516171819202122232425262728293031
  1. QT += sql
  2. QT -= gui
  3. TEMPLATE = lib
  4. DEFINES += GALLERYCORE_LIBRARY
  5. CONFIG += c++17
  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. SOURCES += \
  10. AlbumDao.cpp \
  11. DatabaseManager.cpp \
  12. Picture.cpp \
  13. Album.cpp
  14. HEADERS += \
  15. AlbumDao.h \
  16. DatabaseManager.h \
  17. gallery-core_global.h \
  18. Picture.h \
  19. Album.h
  20. # Default rules for deployment.
  21. unix {
  22. target.path = /usr/lib
  23. }
  24. !isEmpty(target.path): INSTALLS += target