diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-02-25 17:35:27 +1100 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-02-25 17:35:27 +1100 |
commit | 90dd96cbc9b09cdc75977b115a9b61fa7547baef (patch) | |
tree | 013eafe6ba0bf9f4d0e6f1947e22d7fda02707ec /xmake.lua | |
parent | 938f745f052c14fccaa987b98ea4ac84e70c1fcc (diff) |
boilerplate for more examples
Diffstat (limited to 'xmake.lua')
-rw-r--r-- | xmake.lua | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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 |