summaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-03-17 14:59:35 +1100
committerOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-03-17 14:59:35 +1100
commit1afe4876cb8133c5b47fdcfeb07decc5565c4844 (patch)
tree23c945a7b9f4cdef1cc74879548856a21a437313 /xmake.lua
parenta466cc429d8017eb0ee22237f5683cc75791fe85 (diff)
wip: transform propagation
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/xmake.lua b/xmake.lua
index 15159ef..0f039e7 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -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")