summaryrefslogtreecommitdiff
path: root/tests/actions/addon/custom-rule/rules/hello/xmake.lua
blob: 07638387dea8b73f9881bab676b3a1246c9cb496 (plain)
1
2
3
4
5
6
rule("hello")
    on_load(function (target)
        -- the addon code refers to its own resources with `@self`
        import("@self.greeting")
        print("custom-rule: %s", greeting(target:name()))
    end)