diff options
Diffstat (limited to 'tests/projects')
| -rw-r--r-- | tests/projects/other/ispc/xmake.lua | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/tests/projects/other/ispc/xmake.lua b/tests/projects/other/ispc/xmake.lua index a7311abec..577c6798b 100644 --- a/tests/projects/other/ispc/xmake.lua +++ b/tests/projects/other/ispc/xmake.lua @@ -1,16 +1,8 @@ add_rules("mode.debug", "mode.release") -includes("ispc.lua") - -target("test_ispc") - set_kind("object") - add_rules("utils.ispc", {header_extension = "_ispc.h"}) - add_files("src/*.ispc") - set_values("ispc.flags", "--target=host") - set_policy("build.across_targets_in_parallel", false) - target("test") set_kind("binary") - add_deps("test_ispc") + add_rules("utils.ispc", {header_extension = "_ispc.h"}) + set_values("ispc.flags", "--target=host") + add_files("src/*.ispc") add_files("src/*.cpp") - |
