Advertisement
Guest User

Untitled

a guest
May 24th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 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: [
  24. "aaa",
  25. "bbb"
  26. ]
  27. }
  28. }
  29.  
  30. CppApplication {
  31.  
  32. name: "myapp"
  33.  
  34. Depends { name: "lib1" }
  35.  
  36. consoleApplication: true
  37. files: "main.cpp"
  38.  
  39. cpp.includePaths: [ "hello", "world" ]
  40. }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement