diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-06-12 00:16:51 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-06-12 00:16:51 +1000 |
commit | 26fb1fcafa552c600a70b2680c868f7355b138e4 (patch) | |
tree | 2fb77c8b14a5610584a316e57fd8db2795847a0f /xmake.lua | |
parent | 76216f91aee936bc57d7e1a1b2c2b63a03ce976a (diff) |
wip: uvsphere mesh gen and pbr shader first pass
Diffstat (limited to 'xmake.lua')
-rw-r--r-- | xmake.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -188,6 +188,13 @@ target("cube") add_files("examples/cube/ex_cube.c") set_rundir("$(projectdir)") +target("primitives") + set_kind("binary") + set_group("examples") + add_deps("core_static") + add_files("examples/primitives/ex_primitives.c") + set_rundir("$(projectdir)") + -- target("std") -- set_kind("binary") -- set_group("examples") |