summaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-02-25 17:35:27 +1100
committerOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-02-25 17:35:27 +1100
commit90dd96cbc9b09cdc75977b115a9b61fa7547baef (patch)
tree013eafe6ba0bf9f4d0e6f1947e22d7fda02707ec /xmake.lua
parent938f745f052c14fccaa987b98ea4ac84e70c1fcc (diff)
boilerplate for more examples
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/xmake.lua b/xmake.lua
index e6b77c2..e43d2ff 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -94,4 +94,18 @@ target("std")
set_group("examples")
add_deps("core_static")
add_files("examples/standard_lib/ex_std.c")
+ set_rundir("$(projectdir)")
+
+target("obj_loading")
+ set_kind("binary")
+ set_group("examples")
+ add_deps("core_static")
+ add_files("examples/obj_loading/ex_obj_loading.c")
+ set_rundir("$(projectdir)")
+
+target("demo")
+ set_kind("binary")
+ set_group("examples")
+ add_deps("core_static")
+ add_files("examples/demo/demo.c")
set_rundir("$(projectdir)") \ No newline at end of file