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

add_requires("libxmake")

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

${FAQ}