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

target("test")
    set_kind("binary")
    add_rules("utils.ispc", {header_extension = "_ispc.h"})
    set_values("ispc.flags", "--target=host")
    add_files("src/*.ispc")
    add_files("src/*.cpp")