summaryrefslogtreecommitdiff
path: root/tests/plugins/pack/xmake.lua
blob: 2268c4a5e9e4a08a80409742961b0b5bd07c26e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
add_rules("mode.debug", "mode.release")

includes("@builtin/xpack")

target("test")
    set_kind("binary")
    add_files("src/*.cpp")

xpack("test")
    add_formats("nsis")
    set_description("hello")
    add_targets("test")

    on_installcmd(function (package)
    end)