summaryrefslogtreecommitdiff
path: root/tests/projects/xmake_cli/xmake/xmake.lua
blob: e00d7e14d748e0a6fbb5b6edfdd1419560ce6d76 (plain)
1
2
3
4
5
6
7
8
9
10
add_rules("mode.debug", "mode.release")
add_requires("libxmake")
target("xmake")
    add_rules("xmake.cli")
    add_files("src/*.c")
    if is_plat("windows") then
        add_files("src/*.rc")
    end
    add_packages("libxmake")