summaryrefslogtreecommitdiff
path: root/tests/projects/other/bin2c/xmake.lua
blob: b4c71e70562fadf6e9bf2a661339c310dcd445a1 (plain)
1
2
3
4
5
6
7
8
9
10
add_rules("mode.debug", "mode.release")

target("test")
    set_kind("binary")
    add_rules("utils.bin2c", {linewidth = 16, extensions = {".bin", ".png"}})
    add_files("src/*.c")
    add_files("src/*.bin")
    add_files("src/*.png")