summaryrefslogtreecommitdiff
path: root/tests/projects/asm/yasm/xmake.lua
blob: 6c96d4c6a04c1ea1f9052030152a6c8fcb925882 (plain)
1
2
3
4
5
6
7
8
target("test")
    set_kind("binary")
    add_files("src/*.c")
    if is_plat("linux") then
        add_files("src/main_elf.S")
    else
        add_files("src/main.S")
    end