summaryrefslogtreecommitdiff
path: root/xmake/templates/c/tbox.console/project/src/xmake.lua
blob: 22773aad5d5441a2c54f349581ba7ee5ad4550bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- add target
target("${TARGETNAME}")

    -- set kind
    set_kind("binary")

    -- add defines
    add_defines("__tb_prefix__=\"${TARGETNAME}\"")

    -- add packages
    add_packages("tbox")

    -- add files
    add_files("*.c")