Advertisement
Guest User

Untitled

a guest
May 24th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. import qbs
  2.  
  3. Project {
  4.  
  5. minimumQbsVersion: "1.7"
  6.  
  7. Product {
  8. Depends { name: "cpp" }
  9. property pathList myIncludes: ["feat1", "feat2"]
  10.  
  11. type: "staticlibrary"
  12. name: "ex"
  13. id: ex
  14. cpp.includePaths: myIncludes
  15. }
  16.  
  17. CppApplication {
  18.  
  19. name: "myapp"
  20.  
  21. Depends { name: "ex" }
  22.  
  23. consoleApplication: true
  24. files: "main.cpp"
  25.  
  26. cpp.includePaths: [ "hello", "world" ].concat(ex.myIncludes)
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement