diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-06 12:17:56 +1100 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-06 12:17:56 +1100 |
commit | 76de359be82154193d1ed13f30c34019a92318b7 (patch) | |
tree | a1528ff6b499fc9a7390626398f6e08ccb3a4fbc /xmake.lua | |
parent | ef264da91e1e7efc209bd49320fc5907f62312a7 (diff) |
wip: get integers
Diffstat (limited to 'xmake.lua')
-rw-r--r-- | xmake.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -159,6 +159,13 @@ target("animation") add_files("examples/property_animation/ex_property_animation.c") set_rundir("$(projectdir)") +target("skinned") + set_kind("binary") + set_group("examples") + add_deps("core_shared") + add_files("examples/skinned_animation/ex_skinned_animation.c") + set_rundir("$(projectdir)") + target("input") set_kind("binary") set_group("examples") |