client.qbs 394 B

12345678910111213141516171819202122232425262728
  1. import qbs
  2. QtApplication {
  3. name: "Client"
  4. targetName: "qmqtt_example"
  5. files: [
  6. "example.cpp"
  7. ]
  8. Depends {
  9. name: "Qt"
  10. submodules: [
  11. "core",
  12. "network",
  13. ]
  14. }
  15. Depends {
  16. name: "qmqtt"
  17. }
  18. Group {
  19. fileTagsFilter: "application"
  20. qbs.install: true
  21. qbs.installDir: "bin"
  22. }
  23. }