summaryrefslogtreecommitdiff
path: root/xmake/templates/c++/tbox.console/project/src/xmake.lua
blob: 8664f53472b3d2a65be34e70dbcd28665032fbb8 (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("*.cpp")