Advertisement
Guest User

Untitled

a guest
May 24th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. import qbs
  2.  
  3. ExampleProject {
  4.  
  5. minimumQbsVersion: "1.7"
  6.  
  7. Product {
  8. Depends { name: "cpp" }
  9.  
  10. id: lib1
  11. name: "lib1"
  12. type: "staticlibrary"
  13.  
  14. property pathList myIncludes: [
  15. "aaa",
  16. "bbb"
  17. ]
  18.  
  19. cpp.includePaths: lib1.myIncludes
  20.  
  21. Export {
  22. Depends { name: "cpp" }
  23. cpp.includePaths: lib1.myIncludes
  24. }
  25. }
  26.  
  27. CppApplication {
  28.  
  29. name: "myapp"
  30.  
  31. Depends { name: "lib1" }
  32.  
  33. consoleApplication: true
  34. files: "main.cpp"
  35.  
  36. cpp.includePaths: [ "hello", "world" ]
  37. }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement