summaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorJoshua Rowe <17525998+omnisci3nce@users.noreply.github.com>2024-02-25 13:50:16 +1100
committerGitHub <noreply@github.com>2024-02-25 13:50:16 +1100
commitb5b7cea24c46d28a4b72bc18ca8ccb2d532007d3 (patch)
treefe49ddad815c65ef0deb87dd76e172051e6c49e7 /xmake.lua
parentfc287c6e4f958242a4272da5cb1704e3e789fe07 (diff)
parent938f745f052c14fccaa987b98ea4ac84e70c1fcc (diff)
Merge pull request #3 from omnisci3nce/feature/some-string-utils
Port String utils but using arena for allocation
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 3d267dd..e6b77c2 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -87,4 +87,11 @@ target("main_loop")
set_group("examples")
add_deps("core_shared")
add_files("examples/main_loop/ex_main_loop.c")
+ set_rundir("$(projectdir)")
+
+target("std")
+ set_kind("binary")
+ set_group("examples")
+ add_deps("core_static")
+ add_files("examples/standard_lib/ex_std.c")
set_rundir("$(projectdir)") \ No newline at end of file