diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-17 14:59:35 +1100 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-17 14:59:35 +1100 |
commit | 1afe4876cb8133c5b47fdcfeb07decc5565c4844 (patch) | |
tree | 23c945a7b9f4cdef1cc74879548856a21a437313 /xmake.lua | |
parent | a466cc429d8017eb0ee22237f5683cc75791fe85 (diff) |
wip: transform propagation
Diffstat (limited to 'xmake.lua')
-rw-r--r-- | xmake.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -115,6 +115,13 @@ target("obj") add_files("examples/obj_loading/ex_obj_loading.c") set_rundir("$(projectdir)") +target("transforms") + set_kind("binary") + set_group("examples") + add_deps("core_shared") + add_files("examples/transforms/ex_transforms.c") + set_rundir("$(projectdir)") + target("demo") set_kind("binary") set_group("examples") |