summaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorJoshua Rowe <17525998+omnisci3nce@users.noreply.github.com>2024-04-21 11:48:06 +1000
committerGitHub <noreply@github.com>2024-04-21 11:48:06 +1000
commitd8b564ffd1257152094966784a8db3d1396a8879 (patch)
treeadbbda6eec38d0cd6f35f29e422debe09b807461 /xmake.lua
parent45f035c2174a018444a4e495ec78b4806900d903 (diff)
parent540bdfd0cbe4a95b49281cec4d3ed207070a3b5b (diff)
Merge pull request #10 from omnisci3nce/cel-41-port-over-a-basic-3d-scene-example
Cel 41 port over a basic 3d scene example
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 c18e926..453fb55 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -126,6 +126,13 @@ target("gltf")
add_files("examples/gltf_loading/ex_gltf_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")