diff options
Diffstat (limited to 'tests/projects/other/bin2c/xmake.lua')
| -rw-r--r-- | tests/projects/other/bin2c/xmake.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/projects/other/bin2c/xmake.lua b/tests/projects/other/bin2c/xmake.lua index f37aa1218..d60aea710 100644 --- a/tests/projects/other/bin2c/xmake.lua +++ b/tests/projects/other/bin2c/xmake.lua @@ -12,5 +12,7 @@ target("test") local data = io.readfile(inputfile, {encoding = "binary"}) io.writefile(outputfile, data:reverse(), {encoding = "binary"}) end}) + -- transform can also be a lua script file (supported by the project generators) + add_files("src/asset2.bin", {transform = path.join(os.projectdir(), "transform.lua")}) |
