diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-02-25 13:46:34 +1100 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-02-25 13:46:34 +1100 |
commit | da13dc8b030b9c0ed4805dca9dab3c280583a91f (patch) | |
tree | 6210efb3ce808d3122b16ea699b04d3bd24a3a3c /xmake.lua | |
parent | 348161b7ac920ea450becd35685b81e87342d1e5 (diff) |
split into two examples
Diffstat (limited to 'xmake.lua')
-rw-r--r-- | xmake.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 |