Advertisement
tinyevil

Untitled

Dec 12th, 2017
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. (module
  2. name = "showcase"
  3. version = "0.0.1"
  4.  
  5. sources = (
  6. (source-path path="src")
  7. (source-path path="vendor-src" flags=("-O2" "-Wall"))
  8. )
  9.  
  10. dependencies = (
  11. (dependency name="base" version="1.0+")
  12. (dependency name="foo" version="1.1.2")
  13. (dependency name="bar" version="0.3")
  14. )
  15. )
  16.  
  17.  
  18. {
  19. type : module
  20. name : "showcase"
  21. version : "0.0.1"
  22.  
  23. sources : [
  24. {
  25. type : "source-path"
  26. path : "src"
  27. }
  28.  
  29. {
  30. type : "source-path"
  31. path : "vendor-src"
  32. flags : ["-O2" "-Wall"]
  33. }
  34. ]
  35.  
  36. dependencies : [
  37. {
  38. type : "dependency"
  39. name : "base"
  40. version : "1.0+"
  41. }
  42. {
  43. type : "dependency"
  44. name : "foo"
  45. version : "1.1.2"
  46. }
  47. {
  48. type : "dependency"
  49. name : "bar"
  50. version : "0.3"
  51. }
  52. ]
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement