summaryrefslogtreecommitdiff
path: root/xmake/templates/c/xmake.cli/project/xmake.lua
blob: 678c5ba3a58cc4b3c28b7009a0235fb8b9106b53 (plain)
1
2
3
4
5
6
7
8
9
10
11
add_rules("mode.debug", "mode.release")

add_requires("libxmake")

target("${TARGETNAME}")
    add_rules("xmake.cli")
    add_files("src/lni/*.c")
    add_files("src/lua/*.lua", {rootdir = "src"})
    add_packages("libxmake")

${FAQ}