Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (module
- name = "showcase"
- version = "0.0.1"
- sources = (
- (source-path path="src")
- (source-path path="vendor-src" flags=("-O2" "-Wall"))
- )
- dependencies = (
- (dependency name="base" version="1.0+")
- (dependency name="foo" version="1.1.2")
- (dependency name="bar" version="0.3")
- )
- )
- {
- type : module
- name : "showcase"
- version : "0.0.1"
- sources : [
- {
- type : "source-path"
- path : "src"
- }
- {
- type : "source-path"
- path : "vendor-src"
- flags : ["-O2" "-Wall"]
- }
- ]
- dependencies : [
- {
- type : "dependency"
- name : "base"
- version : "1.0+"
- }
- {
- type : "dependency"
- name : "foo"
- version : "1.1.2"
- }
- {
- type : "dependency"
- name : "bar"
- version : "0.3"
- }
- ]
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement