plainPanel.pro 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. QT += core gui network KWindowSystem concurrent multimedia
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets dbus
  3. CONFIG += c++11
  4. CONFIG += x11
  5. LIBS += -lX11
  6. LIBS += -lKF5WindowSystem
  7. INCLUDEPATH += /usr/include/KF5/KWindowSystem
  8. # You can make your code fail to compile if it uses deprecated APIs.
  9. # In order to do so, uncomment the following line.
  10. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  11. SOURCES += \
  12. applet.cpp \
  13. applets/appmenu/appmenu.cpp \
  14. applets/battery/battery.cpp \
  15. applets/clioutput/clioutput.cpp \
  16. applets/datetime/datetime.cpp \
  17. applets/kblayout/kblayout.cpp \
  18. applets/launcher/launcher.cpp \
  19. applets/localipv4/localipv4.cpp \
  20. applets/mpris/mpris.cpp \
  21. applets/snitray/snitray.cpp \
  22. applets/snitray/statusnotifierwatcher.cpp \
  23. applets/spacer/spacer.cpp \
  24. applets/splitter/splitter.cpp \
  25. applets/usermenu/powerdialog.cpp \
  26. applets/usermenu/usermenu.cpp \
  27. applets/volume/volume.cpp \
  28. applets/windowlist/windowlist.cpp \
  29. applets/workspaces/workspaces.cpp \
  30. configman.cpp \
  31. dbusintegration.cpp \
  32. dynamicapplet.cpp \
  33. initializer.cpp \
  34. main.cpp \
  35. panel.cpp \
  36. staticapplet.cpp
  37. HEADERS += \
  38. applet.h \
  39. applets/appmenu/appmenu.h \
  40. applets/battery/battery.h \
  41. applets/clioutput/clioutput.h \
  42. applets/datetime/datetime.h \
  43. applets/kblayout/kblayout.h \
  44. applets/launcher/launcher.h \
  45. applets/localipv4/localipv4.h \
  46. applets/mpris/mpris.h \
  47. applets/snitray/snitray.h \
  48. applets/snitray/statusnotifierwatcher.h \
  49. applets/spacer/spacer.h \
  50. applets/splitter/splitter.h \
  51. applets/usermenu/powerdialog.h \
  52. applets/usermenu/usermenu.h \
  53. applets/volume/volume.h \
  54. applets/windowlist/windowlist.h \
  55. applets/workspaces/workspaces.h \
  56. configman.h \
  57. dbusintegration.h \
  58. dynamicapplet.h \
  59. initializer.h \
  60. panel.h \
  61. staticapplet.h
  62. #CONFIG += lrelease
  63. CONFIG += embed_translations
  64. # Default rules for deployment.
  65. qnx: target.path = /tmp/$${TARGET}/bin
  66. else: unix:!android: target.path = /opt/$${TARGET}/bin
  67. !isEmpty(target.path): INSTALLS += target