summaryrefslogtreecommitdiff
path: root/xmake/templates/c/tbox.console/project/src/xmake.lua
blob: 40847766cc501c9c073ee23345b20d64718a3756 (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 definitions
    add_defines("__tb_prefix__=\"${TARGETNAME}\"")

    -- add packages
    add_packages("tbox")

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