Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. import qbs
  2.  
  3. Project {
  4. minimumQbsVersion: "1.10.0"
  5.  
  6. CppApplication {
  7. Depends {
  8. name: "Qt.core"
  9. }
  10. Depends {
  11. name: "Qt.quick"
  12. }
  13. Depends {
  14. name: "Qt.quickcontrols2"
  15. }
  16.  
  17. // Additional import path used to resolve QML modules in Qt Creator's code model
  18. property pathList qmlImportPaths: []
  19.  
  20. cpp.cxxLanguageVersion: "c++11"
  21.  
  22. cpp.defines: [// The following define makes your compiler emit warnings if you use
  23. // any feature of Qt which as been marked deprecated (the exact warnings
  24. // depend on your compiler). Please consult the documentation of the
  25. // deprecated API in order to know how to port your code away from it.
  26. "QT_DEPRECATED_WARNINGS" // You can also make your code fail to compile if you use deprecated APIs.// In order to do so, uncomment the following line.// You can also select to disable deprecated APIs only up to a certain version of Qt.//"QT_DISABLE_DEPRECATED_BEFORE=0x060000" // disables all the APIs deprecated before Qt 6.0.0
  27. ]
  28.  
  29.  
  30. files: [
  31. "HotFeedModel.cpp",
  32. "HotFeedModel.h",
  33. "NetworkReplyWithTimeout.cpp",
  34. "NetworkReplyWithTimeout.h",
  35. "Story.cpp",
  36. "Story.h",
  37. "pikabu/Client.cpp",
  38. "pikabu/Client.h",
  39. "main.cpp",
  40. "pikabu/ClientResponse.cpp",
  41. "pikabu/ClientResponse.h",
  42. "qml.qrc",
  43. ]
  44.  
  45. Group {
  46. // Properties for the produced executable
  47. fileTagsFilter: "application"
  48. qbs.install: true
  49. }
  50. }
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement